Skip to content

Instantly share code, notes, and snippets.

@renepenner
Created March 19, 2015 08:44
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save renepenner/196d8ef408aeb2805df4 to your computer and use it in GitHub Desktop.
[alias]
lg1 = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
lg2 = log --graph --abbrev-commit --decorate --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(dim white)- %an%C(reset)' --all
lg = !"git lg1"
@hpc-server
Copy link

$ touch ~/bashGitLb.sh
$ echo '#!/bin/bash' > ~/bashGitLb.sh
$ echo "git for-each-ref refs/remotes --shell --format='echo -e \"\e[00m\e[0032m\" %(committerdate) \"\e[00m\"-\"\e[0031m\" %(refname:short) \"\e[00m\"-\"\e[00m\e[0034m\" %(committername) \"\e[00m\"'  --sort=committerdate | bash" >> ~/bashGitLb.sh

$ git config --global alias.lb '!sh ~/bashGitLb.sh'

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