Last active
July 8, 2024 01:12
-
-
Save jjb/e4517abf2619658270f5cb989dd4838b to your computer and use it in GitHub Desktop.
Git log and stash log aliases with colors and other enhancements
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
[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 |
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
% 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 |
Author
jjb
commented
Jun 9, 2024


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