Skip to content

Instantly share code, notes, and snippets.

@jmeridth
Last active September 25, 2015 11:58
Show Gist options
  • Save jmeridth/918328 to your computer and use it in GitHub Desktop.
Save jmeridth/918328 to your computer and use it in GitHub Desktop.
the commands I run just after installing Git (autocrlf false)
git config --global user.name username
git config --global user.email myemailaddress@work.com
git config --global core.whitespace cr-at-eol
git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"
git config --global push.default tracking
git config --global branch.autosetuprebase always
git config --global help.autocorrect 1
git config --global core.autocrlf false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment