Git是分佈式的代碼管理工具,遠程的代碼管理是基於SSH的,因此要使用遠程的Git則須要SSH的配置。git
github的SSH配置以下:github
一 、shell
設置Git的user name和email:編程
$ git config --global user.name "xuhaiyan"
$ git config --global user.email "haiyan.xu.vip@gmail.com"
2、生成SSH密鑰過程:
1.查看是否已經有了ssh密鑰:cd ~/.ssh
若是沒有密鑰則不會有此文件夾,有則備份刪除
2.生存密鑰:bash
$ ssh-keygen -t rsa -C 「haiyan.xu.vip@gmail.com」
按3個回車,密碼爲空。服務器
Your identification has been saved in /home/tekkub/.ssh/id_rsa.
Your public key has been saved in /home/tekkub/.ssh/id_rsa.pub.
The key fingerprint is:
………………ssh
最後獲得了兩個文件:id_rsa和id_rsa.pub分佈式
3.添加密鑰到ssh:ssh-add 文件名
須要以前輸入密碼。
4.在github上添加ssh密鑰,這要添加的是「id_rsa.pub」裏面的公鑰。ide
打開https://github.com/ ,登錄xuhaiyan825,而後添加ssh。svn
5.測試:ssh git@github.com
The authenticity of host ‘github.com (207.97.227.239)’ can’t be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘github.com,207.97.227.239′ (RSA) to the list of known hosts.
ERROR: Hi tekkub! You’ve successfully authenticated, but GitHub does not provide shell access
Connection to github.com closed.
3、 開始使用github
1.獲取源碼:
$ git clone git@github.com:billyanyteen/github-services.git
2.這樣你的機器上就有一個repo了。
3.git於svn所不一樣的是git是分佈式的,沒有服務器概念。全部的人的機器上都有一個repo,每次提交都是給本身機器的repo
倉庫初始化:
git init
生成快照並存入項目索引:
git add
文件,還有git rm,git mv等等…
項目索引提交:
git commit
4.協做編程:
將本地repo於遠程的origin的repo合併,
推送本地更新到遠程:
git push origin master
更新遠程更新到本地:
git pull origin master
補充:
添加遠端repo:
$ git remote add upstream git://github.com/pjhyett/github-services.git
重命名遠端repo:
$ git://github.com/pjhyett/github-services.git爲「upstream」