feat(git): update dlog alias to include patch option

The dlog alias now includes the '-p' flag to display patch output by default. This change helps users see inline differences along with the log entries.
This commit is contained in:
Harald Hoyer 2024-11-12 09:08:48 +01:00
parent e5b51de881
commit 3fac109ee8

View file

@ -45,7 +45,7 @@ in
alias = {
co = "checkout";
ci = "commit --signoff";
dlog = "-c diff.external=difft log --ext-diff";
dlog = "-c diff.external=difft log --ext-diff -p";
dshow = "-c diff.external=difft show --ext-diff";
ddiff = "-c diff.external=difft diff";
};