寫在前面
前天我的github博客搭建好啦,并在本地寫了一篇文章<a href="https://wblearn.github.io/2016/12/23/one/"target="_blank">我的獨(dú)立博客<small>(第一篇)</small></a>利用git將其push到github上级乐,那么疙咸,今天就簡單記錄下git的使用。整個(gè)過程是在windows下操作的风科。
git將本地項(xiàng)目push到github
1.Git下載地址
git官網(wǎng)是需要翻墻才能下載的撒轮,這里給出Git-2.9.2-64-bit下載地址(我的是64位系統(tǒng)): Git-2.9.2-64-bit
下載后安裝步驟可以參考這里:Win7下Git的安裝
2. 創(chuàng)建ssh key–安全傳輸
<li>方法1. 使用git gui 直接生成
<pre>打開git gui
help – show ssh key</pre>
<li>方法2. 使用git bash/git cmd 創(chuàng)建(git bash 為例 )
設(shè)置git的user.name和user.email
<pre>$ git config --global user.name "wblearn"
$ git config --global user.email "your email"</pre>
查看是否已經(jīng)存在ssh key是否存在
<pre>$ cd ~/.ssh</pre>
<pre>如果沒有則提示: No such file or directory
如果有則進(jìn)入~.ssh路徑下(ls查看當(dāng)前路徑文件,rm * 刪除所有文件)生成新的ssh key</pre>
生成ssh key
<pre>cd ~ //保持在"~"目錄下
$ ssh-keygen -t rsa -C "xxxxxx@qq.com"http://填寫真實(shí)的郵箱</pre>
<pre>Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/xxxx/.ssh/id_rsa): #不填直接回車
Enter passphrase (empty for no passphrase): #輸入密碼(可以為空)
Enter same passphrase again: #再次確認(rèn)密碼(可以為空)
Your identification has been saved in /c/Users/xxxx/.ssh/id_rsa. #生成的密鑰
Your public key has been saved in /c/Users/xxxx/.ssh/id_rsa.pub. #生成的公鑰</pre>
添加ssh key到github
<pre>1.打開github→Settings→SSH kyes→Add SSH key
2.進(jìn)入c:/Users/xxxx/.ssh/目錄下贼穆,打開id_rsa.pub文件题山,全選復(fù)制公鑰內(nèi)容
3.Title自定義,將公鑰粘貼到GitHub中Add an SSH key的key輸入框故痊,最后”Add Key”
</pre>
測試ssh key是否設(shè)置成功
<pre>$ ssh -T git@github.com</pre>
<pre>
The authenticity of host 'github.com (192.30.253.113)' can't be established.
RSA key fingerprint is 16:27:xx:xx:xx:xx:xx:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes #確認(rèn)你是否繼續(xù)聯(lián)系顶瞳,輸入yes
Warning: Permanently added 'github.com,192.30.253.113' (RSA) to the list of known hosts.
Enter passphrase for key '/c/Users/xxxx/.ssh/id_rsa': #生成ssh kye是密碼為空則無此項(xiàng),若設(shè)置有密碼則有此項(xiàng)且愕秫,輸入生成ssh key時(shí)設(shè)置的密碼即可糕韧。
Hi xxx! You've successfully authenticated, but GitHub does not provide shell access. #出現(xiàn)詞句話垃它,說明設(shè)置成功。
</pre>
3.將本地項(xiàng)目push到github(git cmd為例)
打開git cmd 將路徑設(shè)置到項(xiàng)目路徑
初始化項(xiàng)目
<pre>git init</pre>
添加遠(yuǎn)程倉庫
<pre>git remote add origin "你自己倉庫的地址"</pre>
push本地項(xiàng)目到遠(yuǎn)程倉庫
<pre>
git add . //添加所有本地代碼到緩沖區(qū)
git commit -m "first commit"http://描述信息
git push -u origin master//origin也可以自己命名遠(yuǎn)程倉庫名稱
</pre>
<small>ps:我試了兩次沒有push成功,可能是網(wǎng)速的原因予权,第三次push成功壳快,大家要有耐心哦</small>
在github查看自己的項(xiàng)目是否傳上去
寫在最后
撐著年末邻薯,就這樣把自己的獨(dú)立博客搭建好了粥喜,還有一個(gè)星期就2017了,希望2017自己能不斷學(xué)習(xí)缴川,不斷進(jìn)步囱稽,遇見未來更好的自己。
我的獨(dú)立博客因?yàn)閯倓偵暇€二跋,可能會存在一些問題战惊,歡迎大家?guī)兔y試,當(dāng)然你也可以fork,star我的模板吞获。