My repository underwent changes such as:
- ...some unrelated commits...
- Commit new file
foowith 100 lines of content - ...intervening commits, some of which touch
foo... - Insert the contents of
fooat the top of an existing filebarandgit rm fooin the same commit - ...more unrelated commits...
Now I want to see the log of deleted file foo. Everything I've read, including on SO, says I should be able to git log -- foo, but that command produces no output.
If I find the commit that includes deleting foo I can git log 1234abcd -- foo and see its log, so I think my path to foo isn't the problem. Also note that git merge-base HEAD 1234abcd outputs 1234abcd[...], so I think that should prove the commit is reachable from HEAD. Note that there is no file foo in my working tree (obvious, since it was deleted). Using Git 1.7.1.1 on OS X.
Why doesn't git log -- foo work for me and how can I fix it? Thanks!
git log --follow -- fooorgit log --follow -M -- foo? (to force renaming detection)--follow--but readinghistoryI see I had since cd'ed elsewhere when I tried it, making the path invalid.git log --follow -- fooworked when I tried from the right starting point. I guess Git considered rollingfoointobaras some kind of rename? In any case, thank you! I'll be happy to credit this if you'll repost it as an answer.--gets changed to—in the question title...