Git是分布式的代碼管理工具,遠(yuǎn)程的代碼管理是基于SSH的,所以要使用遠(yuǎn)程的Git則需要SSH的配置。
github的SSH配置如下:
一 熊昌、
設(shè)置Git的user name和email:
$ git config --global user.name "xuhaiyan"
$ git config --global user.email "haiyan.xu.vip@gmail.com"
二、生成SSH密鑰過程:1.查看是否已經(jīng)有了ssh密鑰:cd ~/.ssh如果沒有密鑰則不會有此文件夾湿酸,有則備份刪除2.生存密鑰:$ 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:………………
最后得到了兩個文件:id_rsa和id_rsa.pub
3.添加密鑰到ssh:ssh-add 文件名需要之前輸入密碼推溃。4.在github上添加ssh密鑰昂利,這要添加的是“id_rsa.pub”里面的公鑰。
打開https://github.com/ 铁坎,登陸xuhaiyan825蜂奸,然后添加ssh。
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)? yesWarning: 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 accessConnection to github.com closed.
三厢呵、 開始使用github1.獲取源碼:
$ git clone git@github.com:billyanyteen/github-services.git
2.這樣你的機(jī)器上就有一個repo了窝撵。3.git于svn所不同的是git是分布式的傀顾,沒有服務(wù)器概念襟铭。所有的人的機(jī)器上都有一個repo,每次提交都是給自己機(jī)器的repo倉庫初始化:
git init
生成快照并存入項目索引:
git add
文件,還有g(shù)it rm,git mv等等…項目索引提交:
git commit
4.協(xié)作編程:將本地repo于遠(yuǎn)程的origin的repo合并短曾,推送本地更新到遠(yuǎn)程:
git push origin master
更新遠(yuǎn)程更新到本地:
git pull origin master
補(bǔ)充:添加遠(yuǎn)端repo:
$ git remote add upstream git://github.com/pjhyett/github-services.git
重命名遠(yuǎn)端repo:
$ git://github.com/pjhyett/github-services.git為“upstream”