Git(2.14.1版本)學習及使用(一)

OuZeBo發表於2017-09-06

OuZeBo原創作品。轉載請註明出處 http://www.cnblogs.com/OuZeBo/p/7477465.html

1、下載git:https://git-scm.com/

2、安裝(本人選擇預設路徑,下一步-->end)

3、註冊github賬號

4、git的簡單配置

  $ git config --global user.name yourName

  $ git config --global user.email yourEmail@xxx.com

 

5、github配置新增SSH

  $ ssh-keygen -t rsa -C "yourEmail@xxx.com"

ssh-key的生成路徑(預設路徑):C:/user/administrator/.ssh下的id_rsa.pub檔案下

  

  

6、將ssh配置到GitHub中

id_rsa.pub用記事本開啟,將裡面內容複製到github ssh配置中的key

7、建立本地倉庫

可參考:http://www.runoob.com/git/git-create-repository.html

$ git clone <github專案倉庫路徑> <本地專案路徑>

 

 8、上傳檔案到github倉庫

   手動建立d.txt 

  $ git add d.txt 

  $ git commit   //將檔案上傳到本地倉庫

  $ git push    //將檔案上傳到guihub專案倉庫

 

注:在$ git commit過程中,可能出現這個錯誤(E325:注意Aborting commit due to empty commit message.):

這個錯誤是在git 提交時沒有寫注示文字

操作:新建一個命令視窗,輸入: $ git commit -m "註釋文字"

9、下載github專案倉庫檔案

  $ git pull

 

 

 

 

相關文章