Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
git config --global color.ui "auto"
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 alias.st "status"
git config --global alias.ci "commit -v"
git config --global alias.co "checkout"
git config --global alias.br "branch"

# By default use rebase during "git pull".
Applies to master branch only.
git config --global branch.autosetuprebase always
git config --global branch.master.rebase true  

...