On Thu, Aug 27, 2009 at 10:02 PM, Joey Hess<joey@xxxxxxxxxxx> wrote: > What I really want is a way to find remote branches that > are not merged with any of my local branches (or any origin > branches). A slow and stupid implementation of that is in the > attached git-unmerged script, and it weeds the branch list > down to 68 branches, which are mostly really ones I might > want to look at. How about: gitk $(git for-each-ref --format='%(refname)' 'refs/remotes/'; git for-each-ref --format='^%(refname)' 'refs/heads/') You could also replace 'gitk' with 'git log', and mess with the --pretty=format:whatever parameter. Have fun, Avery -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html