Created
November 4, 2012 12:41
-
-
Save hugorodgerbrown/4011735 to your computer and use it in GitHub Desktop.
Git pimping scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Taken from this article - http://www.jukie.net/bart/blog/pimping-out-git-log