vote up 9 vote down star

In Git, how could I search for a file or directory by path across a number of branches?

I've written something in a branch, but I don't remember which one. Now I need to find it.

Clarification: I'm looking for a file which I created on one of my branches. I'd like to find it by path, and not by its contents, as I don't remember what the contents are.

flag

I'm unclear about the question. Was this file in a branch that is now deleted? Was the file deleted? – Abizern Dec 16 '08 at 20:26

3 Answers

vote up 12 vote down check

git log will find it for you:

% git log --all -- somefile

commit 55d2069a092e07c56a6b4d321509ba7620664c63
Author: Dustin Sallings <dustin@spy.net>
Date:   Tue Dec 16 14:16:22 2008 -0800

    added some file
% git branch --contains 55d2069
  otherbranch
link|flag
vote up 0 vote down

You could use gitk --all and search for commits "touching paths" and the pathname you are interested in.

link|flag
vote up 1 vote down

git ls-tree might help. To search across all existing branches:

for branch in `git branch | sed 's/\*//'`; do
  echo $branch :; git ls-tree $branch | grep '<foo>'
done
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.