How can I search Git branches for a file or directory? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T15:02:45Zhttp://stackoverflow.com/feeds/question/372506http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/372506/how-can-i-search-git-branches-for-a-file-or-directory9How can I search Git branches for a file or directory?Peeja2008-12-16T20:02:03Z2008-12-17T00:02:20Z
<p>In Git, how could I search for a file or directory by path across a number of branches?</p>
<p>I've written something in a branch, but I don't remember which one. Now I need to find it.</p>
<p><strong>Clarification</strong>: 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.</p>
http://stackoverflow.com/questions/372506/how-can-i-search-git-branches-for-a-file-or-directory/372654#3726541Answer by ididak for How can I search Git branches for a file or directory?ididak2008-12-16T20:47:14Z2008-12-16T21:13:37Z<p>git ls-tree might help. To search across all existing branches:</p>
<pre><code>for branch in `git branch | sed 's/\*//'`; do
echo $branch :; git ls-tree $branch | grep '<foo>'
done
</code></pre>
http://stackoverflow.com/questions/372506/how-can-i-search-git-branches-for-a-file-or-directory/372814#3728140Answer by Greg Hewgill for How can I search Git branches for a file or directory?Greg Hewgill2008-12-16T21:31:20Z2008-12-16T21:31:20Z<p>You could use <code>gitk --all</code> and search for commits "touching paths" and the pathname you are interested in.</p>
http://stackoverflow.com/questions/372506/how-can-i-search-git-branches-for-a-file-or-directory/372970#37297012Answer by Dustin for How can I search Git branches for a file or directory?Dustin2008-12-16T22:17:50Z2008-12-17T00:02:20Z<p>git log will find it for you:</p>
<pre><code>% 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
</code></pre>