設定 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/2012/01/17/how-to-use-git-1-git-basic/
http://blog.longwin.com.tw/2009/05/git-initial-env-setup-2009/

留言

這個網誌中的熱門文章

How to use ebtables: ebtable 的小筆記

解決 VirtualBox 無法開啟 NS_ERROR_FAILURE (0x80004005)