marcelom.github.io

Basic git configuration

Posted on 03 Oct 2012 by Marcelo Moreira — Permalink

There are a few things that we can do to increase the usability of git.

This is my basic git config:

git config --global color.ui auto
git config --global user.email myemail@company.com
git config --global user.name Marcelo
git config --global credential.helper 'cache --timeout=3600'
Fork me on GitHub