git常用操作

lighkLife發表於2019-04-03

覆蓋更新

git fetch --all
git reset --hard origin/master
複製程式碼

捨棄追蹤某個檔案

捨棄追蹤 CarDataSpider/utils/DB.py

git update-index --assume-unchanged CarDataSpider/utils/DB.py
複製程式碼

繼續追蹤

git update-index --no-assume-unchanged CarDataSpider/utils/DB.py
複製程式碼

記住使用者名稱和密碼

git config --global credential.helper store
複製程式碼

設定顯示提交記錄樹圖別名

git config --global alias.lg "log --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"
複製程式碼