This repository was archived by the owner on Sep 11, 2020. It is now read-only.
This repository was archived by the owner on Sep 11, 2020. It is now read-only.
Filtering Commits Based on Files They Interact With #562
Open
Description
Hey All,
I am essentially trying to replicate this git log
command in golang and can get most of the way there. Command looks something like this:
git log -- some-magical-path
Git understands when I say this I mean only the commits that interacted with the some-magical-path
and not any others. With the library I only seem to be able to iterate over all of the commits and then ask about their files. When interrogating a commit for its files it gives me all of the files referenced by the tree (even when they have not been interacted with). Does anyone have a good idea how this would be accomplished?
Cheers!