Skip to content

Instantly share code, notes, and snippets.

@juanj032
Created August 26, 2014 18:39
Show Gist options
  • Save juanj032/b7ed19a4907549ecee6b to your computer and use it in GitHub Desktop.
Save juanj032/b7ed19a4907549ecee6b to your computer and use it in GitHub Desktop.
# log with pretty format
git config --global alias.ls 'log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate'
# log with pretty format and changed files
git config --global alias.ll 'log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat'
# log with pretty format and graph timeline
git config --global alias.lol 'log --pretty=oneline --abbrev-commit --graph --decorat' # log with pretty format and graph timeline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment