Re: List all commits of a specified file in oldest to newest order

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 11/5/21 8:13 AM, Ævar Arnfjörð Bjarmason wrote:

The key thing being the "traversal", i.e. as we walk history we'll
encounter a tree entry where b.txt was deleted, and see that it was
moved from a.txt.

Thanks, I didn't know "reverse" would change the traversal order. When I looked for "--reverse" option in git-log(1), this what I found:

  --reverse
Output the commits chosen to be shown (see Commit Limiting section above) in reverse order. Cannot be combined with --walk-reflogs.

From this, I inferred that "--follow" would choose the commits and "--reverse" reverses those commits order. Can we improve the wording here? Especially, about "reverse" changes the traversing order.

However, if we walk history from the beginning we have no idea of the
relationship of a->b.txt, since we didn't encounter that commit yet,
that's only something we see while walking the history.

Not showing commits before rename is expected, but I didn't understand why combination "--follow" and "--reverse" option showing me only one commit? And it always points to the rename of the file. Shouldn't it also list other commits which changes that file? For example, just after "rename of a.txt to b.txt", do some changes in b.txt file and then run "git log --follow --reverse -- b.txt" command.

$ for i in {1..2}; do echo "$i" >> b.txt; git add b.txt; git commit -m "Update$i b.txt"; done
$ git log --follow --reverse -- b.txt
commit 55e3e6857755fe815449e787a90fe82feb174817
Author: Redacted <Redacted>
Date:   Fri Nov 5 06:56:58 2021 +0530

    Rename a.txt to b.txt

Here I expect output to be:

$ git log --follow --reverse -- b.txt
commit 55e3e6857755fe815449e787a90fe82feb174817
Author: Reacted <Redacted>
Date:   Fri Nov 5 06:56:58 2021 +0530

    Rename a.txt to b.txt

commit 57aac6d1af2d869557991e714932847f37035d19
Author: Redacted <Redacted>
Date:   Sun Nov 7 20:30:32 2021 +0530

    Update1 b.txt

commit ea76a8e8af903dc1522626aa058b8058afbe11f4
Author: Redacted <Redacted>
Date:   Sun Nov 7 20:30:32 2021 +0530

    Update2 b.txt

I know, here using "--follow" along with "--reverse" doesn't make any sense. Instead we should use "git log --reverse -- b.txt". But I'm just curious, is this also an expected caveats of using "--follow" along with "--reverse"?

This caveat doesn't only apply to reverse, try to apply a move of b.txt
on top of your history:

     b.txt -> c.txt

And now do:

     git log [--follow] -- b.txt

What should we output there? If we're arguing that we should first
traverse the history to "look forward" that'll also apply to a
non-reverse walk, since we're asking to follow b.txt.

But we haven't encountered the b->c.txt relationship yet (well, we run
into the rename commit, but once you add a c->d.txt on top...). So maybe
instead of --buffer-then-reverse we'd need a hypothetical --two-pass,
which would also impact options other than --reverse whose behavior
relies on traversal order.

"--two-pass" option sounds like a good idea, but not sure how useful it would be for others. In my case, I could read the log's command output in bottom to top fashion, and now I also know two other approaches to get what I wanted. And I usually don't track deleted file.


-v



[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux