From Fedora Project Wiki
No edit summary |
No edit summary |
||
Line 21: | Line 21: | ||
#$ git push ssh://git.fedorahosted.org/git/autoqa.git master | #$ git push ssh://git.fedorahosted.org/git/autoqa.git master | ||
#:Enter passphrase for key '/home/liam/.ssh/id_rsa': | #:Enter passphrase for key '/home/liam/.ssh/id_rsa': | ||
'''Create named branch''' | |||
#[https://fedoraproject.org/wiki/AutoQA_PatchProcess#Named_Branch Create named branch] | |||
'''More git reference''' | '''More git reference''' | ||
#[http://www.kernel.org/pub/software/scm/git/docs/v1.2.6/tutorial.html git tutorial introduction] | #[http://www.kernel.org/pub/software/scm/git/docs/v1.2.6/tutorial.html git tutorial introduction] |
Revision as of 06:39, 12 August 2010
Update Auto Install
Upload the authentication key
- $ pwd
- /home/liam
- $ ssh-keygen -t rsa
- Get an account and upload the /home/liam/.ssh/id_rsa.pub to https://admin.fedoraproject.org/accounts/login
Clone the source code
Configure name and email
- $ git config -f $HOME/.gitconfig user.name "Liam Li"
- $ git config -f $HOME/.gitconfig user.email "lili@redhat.com"
Add files
- $ pwd
- /home/liam/autoqa
- $ git add tests/anaconda/*
- $ git commit -a
- $ git pull
- $ git push origin liam
- $ git push ssh://git.fedorahosted.org/git/autoqa.git master
- Enter passphrase for key '/home/liam/.ssh/id_rsa':
Create named branch
More git reference