All of lore.kernel.org
 help / color / mirror / Atom feed
* Feature request: implement '--follow' option for `git blame`
@ 2015-04-06 12:12 KES
  2015-04-07 17:26 ` Fwd: " KES
  2015-04-08  2:48 ` Junio C Hamano
  0 siblings, 2 replies; 6+ messages in thread
From: KES @ 2015-04-06 12:12 UTC (permalink / raw)
  To: git

    $ pwd
    /data/mdi2/classes

    $ git blame -L22,+1 -- utils.js
    99b7a802 mdi2/utils.js (user 2015-03-26 21:54:57 +0200 22)  #comment

    $ git blame -L22,+1 99b7a802^ -- utils.js
    fatal: no such path mdi2/classes/utils.js in 99b7a802^

As you have noticed, the file were in different directory in that commit

    $ git blame -L22,+1 99b7a802^ -- ../utils.js
    c5105267 (user 2007-04-10 08:00:20 +0000 22)    #comment 2

Despite on doc

    The origin of lines is automatically followed across whole-file renames (currently there is no option to turn
           the rename-following off)

blame does not follow renames. Why?

**UPDATE:** Short answer

`git blame` follow renames but not for `git blame COMMIT^ -- <filename>`

But this is too hard to track file renames manually through bulk of renames and ton of history.
I think, this behaviour must be fixed to silently follow renames for `git blame COMMIT^ -- <filename>`. Or, at least, `--follow` must be implemented, so I can: `git blame --follow COMMIT^ -- <filename>`

The good answer is here:
http://stackoverflow.com/questions/29468273/why-git-blame-does-not-follow-renames

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-04-13 19:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-06 12:12 Feature request: implement '--follow' option for `git blame` KES
2015-04-07 17:26 ` Fwd: " KES
2015-04-08  2:48 ` Junio C Hamano
2015-04-10  6:40   ` Re[2]: " Eugen Konkov
2015-04-13  5:32     ` Junio C Hamano
2015-04-13 19:07       ` Re[2]: " Eugen Konkov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.