2012年10月9日 星期二

git 設定

使用 git config --system 的設定值會存在 /etc/gitconfig 裡
使用 git config --global 的設定值會存在 ~/.gitconfig 裡
每個 repository 裡的 .git/config 則會覆蓋上述二個檔案的設定,提供個別 repository 專門的設定

將預設編輯器改為 vim
git config --global core.editor vim
改使用者名稱
git config --global user.name "Your Name"
改使用者 e-mail 位址
git config --global user.email you@example.com
設定使用的 diff tool
git config --global merge.tool vimdiff
查看目前設定
git config --lis

沒有留言:

張貼留言