Skip to content

Instantly share code, notes, and snippets.

@jjb
Last active July 8, 2024 01:12
Show Gist options
  • Save jjb/e4517abf2619658270f5cb989dd4838b to your computer and use it in GitHub Desktop.
Save jjb/e4517abf2619658270f5cb989dd4838b to your computer and use it in GitHub Desktop.
Git log and stash log aliases with colors and other enhancements
[alias]
l = log --pretty=format:'%C("#ff6188")%h%Creset -%C("#ffd866")%d%Creset %C("#a9dc76")(%cr)%Creset %C("#78dce8")<%an>%Creset%n%s%n%n%b' --abbrev-commit --date=relative
sl = stash list --pretty=format:'%C("#ff6188")%h%Creset -%C("#ffd866")%d%Creset %C("#a9dc76")(%cr)%Creset %C("#78dce8")<%an>%Creset%n%s%n%n%b' --abbrev-commit --date=relative
# colors from: https://gist.github.com/jjb/366bed1d5f099a42f0da0f64b5b52798
% status -- the status line
% underline -- underlined text
% overstrike -- overstruck text
% normal -- anything else
% color OBJECT-NAME FOREGROUND-COLOR BACKGROUND-COLOR
% https://gist.github.com/jjb/366bed1d5f099a42f0da0f64b5b52798
color status white #fc9867
@jjb
Copy link
Author

jjb commented Jul 8, 2024

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