Say I have a repository repo
with two folders:
foo
bar
Say I want to see all commits in folder foo
. I type gitk -- repo/foo
and voilá, there they are.
Problem: All commits displayed in the graphical output silently omit any file that resides outside of foo
, say, in bar
.
How can I make gitk
only display commits for a directory, but yet show the full changelog of a commit?