How can I search Git branches for a file or directory? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:02:45Z http://stackoverflow.com/feeds/question/372506 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/372506/how-can-i-search-git-branches-for-a-file-or-directory 9 How can I search Git branches for a file or directory? Peeja 2008-12-16T20:02:03Z 2008-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#372654 1 Answer by ididak for How can I search Git branches for a file or directory? ididak 2008-12-16T20:47:14Z 2008-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 '&lt;foo&gt;' done </code></pre> http://stackoverflow.com/questions/372506/how-can-i-search-git-branches-for-a-file-or-directory/372814#372814 0 Answer by Greg Hewgill for How can I search Git branches for a file or directory? Greg Hewgill 2008-12-16T21:31:20Z 2008-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#372970 12 Answer by Dustin for How can I search Git branches for a file or directory? Dustin 2008-12-16T22:17:50Z 2008-12-17T00:02:20Z <p>git log will find it for you:</p> <pre><code>% git log --all -- somefile commit 55d2069a092e07c56a6b4d321509ba7620664c63 Author: Dustin Sallings &lt;dustin@spy.net&gt; Date: Tue Dec 16 14:16:22 2008 -0800 added some file % git branch --contains 55d2069 otherbranch </code></pre>