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

Unified Diff: git_cl.py

Issue 10825285: Add the ability to set the upstream branch (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: Created 8 years, 4 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
===================================================================
--- git_cl.py (revision 150922)
+++ git_cl.py (working copy)
@@ -1514,13 +1514,22 @@
return 0
+@usage('[new upstream branch]')
def CMDupstream(parser, args):
- """print the name of the upstream branch, if any"""
+ """prints or sets the name of the upstream branch, if any"""
_, args = parser.parse_args(args)
- if args:
+ if len(args) > 1:
parser.error('Unrecognized args: %s' % ' '.join(args))
+ return 0
+
cl = Changelist()
- print cl.GetUpstreamBranch()
+ if args:
+ # One arg means set upstream branch.
+ RunGit(['branch', '--set-upstream', cl.GetBranch(), args[0]])
+ cl = Changelist()
+ print "Upstream branch set to " + cl.GetUpstreamBranch()
+ else:
+ print cl.GetUpstreamBranch()
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