linux
Git Config Options
Git Config Options
I just had a chance to jump on a new server and do some git repository setup. Here are a few of the git configuration commands for reference.
git config --global core.editor vim
git config --global user.name Joe\ Momma
git config --global user.email joe@joemomma.com
git config --global commit.template $HOME/.git-commit.tpl
git config --global color.ui true
git config --global core.autocrlf input
git config --global push.default matching
More Config References
The man pages have a more complete listing of options that are available. Read the git-config docs for more information.
Last Updated: 2014-04-17 12:06:46