-
Notifications
You must be signed in to change notification settings - Fork 402
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
git log --graph not supported ? #141
Comments
|
Hi @bric3, thanks for this! I agree it's not working and I agree it would make sense for it to work in principle. Regarding implementation, the parser currently does not have any concept of "being in Incidentally, do you find it helpful to use |
Actually I usually don't do that as I'm using the git alias which happens to use the But if this has to be implemnted I think using the star |
I'm using both at the same time, mainly because I have a git alias that reformats the commits info, body, and also enables graph. I tested with delta 0.13.0, it's not yet working. How difficult is the rest of the work needed to have this feature? |
I also wanted this to be able to add [alias]
# log (short and long)
l = log --graph --pretty=format:'%C(auto)%h %C(bold)%cs%C(auto) %C(blue)%an:%C(auto)%d %s' --color=always
la = l --all
ll = log --graph --pretty=fuller --abbrev-commit --color=always
lla = ll --all
# versions of log aliases with "--patch"
# - they duplicate the "l" and "ll" aliases wtihout "--graph" since
# it's not compatible with git-delta
lp = log --pretty=format:'%C(auto)%h %C(bold)%cs%C(auto) %C(blue)%an:%C(auto)%d %s' --color=always --patch
lap = lp --all
llp = log --pretty=fuller --abbrev-commit --color=always --patch
llap = llp --all |
Until lg-dt = "!DFT_IGNORE_COMMENTS= git -c diff.external=difft log --graph --date=local --decorate --patch --ext-diff"
show-dt = "!DFT_IGNORE_COMMENTS= git -c diff.external=difft show --patch --ext-diff" |
Hi I believe I came across an issue, but I'm not sure. I've configured
delta
this way in my.gitconfig
I have this alias as well
I narrowed the issue to the
--graph
option, when it's used, delta somehow back outThe text was updated successfully, but these errors were encountered: