Tuesday, May 5, 2009
Posted in
Git
|
Configure global variables in git:
Or, create ~/.gitconfig, and paste the following content into it.
git config --global user.name 'MYNAME'
git config --global user.email 'oo@xx.abc'
git config --global color.status auto
git config --global color.branch auto
git config --global core.editor 'vim'
Or, create ~/.gitconfig, and paste the following content into it.
[user]
email = aaa.bbb@gmail.com
name = aaa.bbb
[color]
ui = auto
diff = auto
status = auto
branch = auto
log = auto
0 意見:
Post a Comment