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

Side by Side Diff: git_nav_downstream.py

Issue 184113002: Add git-map and git-short-map to depot_tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@new_branch
Patch Set: comments Created 6 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 import sys
3
4 from git_common import current_branch, branches, upstream, run, hash_one
5
6
7 def main(argv):
8 assert len(argv) == 1, "No arguments expected"
9 upfn = upstream
10 cur = current_branch()
11 if cur == 'HEAD':
12 upfn = lambda b: hash_one(upstream(b))
13 cur = hash_one(cur)
14 downstreams = [b for b in branches() if upfn(b) == cur]
15 if not downstreams:
16 return "No downstream branches"
17 elif len(downstreams) == 1:
18 run('checkout', downstreams[0])
19 else:
20 high = len(downstreams) - 1
21 print
22 while True:
23 print "Please select a downstream branch"
24 for i, b in enumerate(downstreams):
25 print " %d. %s" % (i, b)
26 r = raw_input("Selection (0-%d)[0]: " % high).strip() or '0'
27 if not r.isdigit() or (0 > int(r) > high):
28 print "Invalid choice."
29 else:
30 run('checkout', downstreams[int(r)])
31 break
32
33
34 if __name__ == '__main__':
35 sys.exit(main(sys.argv))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698