Skip to content

Instantly share code, notes, and snippets.

@hugorodgerbrown
Created November 4, 2012 12:41
Show Gist options
  • Save hugorodgerbrown/4011735 to your computer and use it in GitHub Desktop.
Save hugorodgerbrown/4011735 to your computer and use it in GitHub Desktop.
Git pimping scripts
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"
# pretty, coloured, graph visualisation - taken from http://stackoverflow.com/a/9074343/45698
git config --global alias.lg1 "log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative"
# pretty, coloured, graph visualisation - taken from http://stackoverflow.com/a/9074343/45698
git config --global alias.lg2 "log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(bold white)— %an%C(reset)' --abbrev-commit"
# add alias to create simple changelog
# usage: git clog <commit_hash>..HEAD
git config --global alias.clog 'log --oneline --no-merges'
@hugorodgerbrown
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment