From: Daniel Dunbar Date: Thu, 17 Jan 2013 18:57:21 +0000 (+0000) Subject: [utils] Update find-rev utility to take a branch argument (name of the git-svn X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f6893dd44daff07245d59d21968f065b6247a9b2;p=oota-llvm.git [utils] Update find-rev utility to take a branch argument (name of the git-svn branch). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172740 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/git/find-rev b/utils/git/find-rev index a6161db1898..059ca0b78de 100755 --- a/utils/git/find-rev +++ b/utils/git/find-rev @@ -5,9 +5,9 @@ import os, sys, subprocess def main(): from optparse import OptionParser, OptionGroup parser = OptionParser("usage: %prog [options] ") - parser.add_option("", "--dump-section-data", dest="dumpSectionData", - help="Dump the contents of sections", - action="store_true", default=False) + parser.add_option("", "--branch", dest="branch", + help="Ref for the branch to search [%default]", + action="store", default="git-svn") (opts, args) = parser.parse_args() if len(args) != 2: @@ -21,7 +21,7 @@ def main(): parser.error("invalid revision argument (not an integer)") os.chdir(repo) - p = subprocess.Popen(['git', 'rev-list', 'git-svn', '--pretty'], + p = subprocess.Popen(['git', 'rev-list', opts.branch, '--pretty'], stdout=subprocess.PIPE) bestRev = bestCommit = None