設定 Git 的環境變數 - Git config
這裡記錄一下目前會用到的 git config 設定 # 設定使用者資訊 git config --global user.name "Steven" git config --global user.email "steven@helloworld.com" # 設定顏色顯示 git config --global color.ui auto git config --global color.diff auto git config --global color.status auto git config --global color.branch auto git config --global color.log auto # 設定 alias git config --global alias.st status git config --global alias.co checkout # 如要忽略空白的比對,可增加以下這個 git config --global apply.whitespace nowarn 設定完之後,在個人的家目錄底下去 cat .gitconfig ,即會看到此資訊 [ push ] default = matching [ alias ] st = status # 設定 status 縮寫 co = checkout # 設定 checkout 縮寫 [ color ] ui = auto # 設定 ut 的顏色為 auto diff = auto # diff status = auto # status branch = auto # branch log = auto # log, 以上這幾種都會自動標色 [ user ] name = Steven Wu email = steven@helloworld.com 參考資料: http://gogojimmy.net