-
Notifications
You must be signed in to change notification settings - Fork 396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 When using --date with git blame delta, the output is not colored #1278
Comments
Not sure if this helps, but
For instance, to have absolute dates by default, put this in
|
Using the |
The timestamp on the blame line is parsed with this regex which parses the timestamp as There are many standard formats for |
The regex should accept more formats with #925, but supporting the various |
When using the --date option with git blame, delta does not color the output when the value is anything other than iso8601 or iso8601-local. E.g.
git blame --date=short FILENAME
does not produce colored output, whilegit blame --date=iso8601 FILENAME
does.(You can use
git --no-pager
to produce the raw text output.)I've created an asciinema here:
The text was updated successfully, but these errors were encountered: