Git使用筆記

2021-08-22 10:25:37 字數 333 閱讀 6610

從建立本地的br_debug分支,並且同步遠端的br_debug分支。

git checkout -b br_debug origin/br_debug

雖然只有幾個字母的差別,但是效率提高還是很明顯的!

別名修改上次的commit message

git commit --amend

每次安裝git的時候要用的

git config --global user.name 「your name」

git config --global user.email "[email protected]"

這就是windows經常提醒的那個東西

git 使用筆記

git 使用筆記 初始化資訊 git config user.name name git config user.email com git config core.editor vim git init 初始化資訊 從遠端pull git clone git url git pull push 到...

git使用筆記

回滾 git checkout sql 沒有 git add 之前 執行回滾到原始狀態 git reset head sql 執行git add之後,但是沒有 git commit之前 操作,然後在執行 git checkout git remote v 檢視遠端倉庫詳細資訊 git log log...

Git使用筆記

用了一段時間的tortoisgit,基本能滿足目前的需求。但是當切換到linux的工作環境時,就有點不知所措了,於是又複習了一下git的命令,相對於第一次學習,又有了新的認識。工作區 working tree 所有有改動的檔案都存在於工作區。暫存區 index 對於已經存在於工作區的檔案,執行git...