Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2987)

Unified Diff: git_cl.py

Issue 969263002: git_cl: Add reverse issue lookup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Removed global-scope function. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index bcd4a6252b018978cc860b3ebebf75dd6f197d54..021b1eb1ca17c1d283fafffbcc0979f31f669d82 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1473,17 +1473,38 @@ def CMDissue(parser, args):
Pass issue number 0 to clear the current issue.
"""
- _, args = parser.parse_args(args)
+ parser.add_option('-r', '--reverse', action='store_true',
+ help='Lookup the branch(es) for the specified issues. If '
+ 'no issues are specified, all branches with mapped '
+ 'issues will be listed.')
+ options, args = parser.parse_args(args)
- cl = Changelist()
- if len(args) > 0:
- try:
- issue = int(args[0])
- except ValueError:
- DieWithError('Pass a number to set the issue or none to list it.\n'
- 'Maybe you want to run git cl status?')
- cl.SetIssue(issue)
- print 'Issue number: %s (%s)' % (cl.GetIssue(), cl.GetIssueURL())
+ if options.reverse:
+ branches = RunGit(['for-each-ref', 'refs/heads',
+ '--format=%(refname:short)']).splitlines()
+
+ # Reverse issue lookup.
+ issue_branch_map = {}
+ for branch in branches:
+ cl = Changelist(branchref=branch)
+ issue_branch_map.setdefault(cl.GetIssue(), []).append(branch)
+ if not args:
+ args = sorted(issue_branch_map.iterkeys())
+ for issue in args:
+ if not issue:
+ continue
+ print 'Branch for issue number %s: %s' % (
+ issue, ', '.join(issue_branch_map.get(int(issue)) or ('None',)))
+ else:
+ cl = Changelist()
+ if len(args) > 0:
+ try:
+ issue = int(args[0])
+ except ValueError:
+ DieWithError('Pass a number to set the issue or none to list it.\n'
+ 'Maybe you want to run git cl status?')
+ cl.SetIssue(issue)
+ print 'Issue number: %s (%s)' % (cl.GetIssue(), cl.GetIssueURL())
return 0
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698