1.配置全域性資訊
$ git config --global user.name "****"
$ git config --global user.email " ******.com"複製程式碼
2.開始使用git
1. 建倉 =>
$ git init複製程式碼
2. 加倉 =>
$ git add . ( 後面的那個點是必須的 )複製程式碼
3. 提交 =>
$ git commit -m "註釋資訊"複製程式碼
4. 本地關聯遠端倉庫加別名 =>
$ git remote add origin https:// github . ****.git複製程式碼
4.1 可以刪除別名 =>
$ git remote remove 別名複製程式碼
5. 從遠端倉拉專案 =>
$ git pull origin master複製程式碼
6. 上傳到遠端倉庫 =>
$ git push origin master複製程式碼
* 報錯的話 可以 => $ git pull --rebase origin master複製程式碼
7 .查詢歷史日誌 =>
$ git reflog複製程式碼
8 .版本切換 =>
$ git reset --hard 版本號複製程式碼
3.分支結構=> 修bug 和 改新需求衝突時
1. 檢視分支 =>
$ git branch複製程式碼
2 .建立分支 =>
$ git branch 分支名複製程式碼
3 .切換分支 =>
$ git chekout 分支名 (完成修改後,執行 git add . , git commit -m "")複製程式碼
4 .合併分支 =>
$ git merge 分支名 (合併之前要切回到master,用master merge 分支)複製程式碼
4.配置公鑰免登入
1. 刪除遠端別名 =>
$ git remote remove 別名複製程式碼
2 .更換遠端ssh 地址 =>
$ git remote add origin @***.ssh複製程式碼
3 .ssh 建立key =>
$ ssh-keygen -t rsa -C “config 的郵箱” (一路回車)複製程式碼
4 .在git 中生成公鑰的本地路徑
在c盤(id-rsa.pub: 公鑰) 在客戶端配置公鑰複製程式碼