分类: LINUX
2014-01-21 22:41:11
01
|
$ ssh-keygen -t rsa -C "your_email@youremail.com"
|
01
|
$ ssh -T git@github.com
|
01
02
|
$ git config --global user.name "your name"
$ git config --global user.email "your_email@youremail.com"
|
01
|
$ git remote add origin git@github.com:yourName/yourRepo.git
|
|
$ git add README
$ git commit -m "first commit" |
01
|
$ git push origin master
|
01
02
03
|
bin
*.suo
obj
|