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

Unified Diff: git_cl.py

Issue 298703003: Upload project option (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 7 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 | « gcl.py ('k') | tests/gcl_unittest.py » ('j') | third_party/upload.py » ('J')
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 e8695e82eff5e402b5d7ee09ecaa23216ea75c6b..8690dabf73b062510626c50a20aa10119482dba2 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1074,6 +1074,12 @@ def LoadCodereviewSettingsFromFile(fileobj):
RunGit(['config', keyvals['PUSH_URL_CONFIG'],
keyvals['ORIGIN_URL_CONFIG']])
+ if 'PROJECT' in keyvals:
+ branchref = RunGit(['symbolic-ref', 'HEAD']).strip()
iannucci 2014/05/27 18:00:33 What happens when the user has a detached HEAD?
sheyang 2014/06/02 22:56:48 Discussed offline. This will be saved into .git/co
+ branch = ShortBranchName(branchref)
iannucci 2014/05/27 18:00:33 what does shortbranchname do? Is this the same as
sheyang 2014/06/02 22:56:48 It converts the name like 'refs/heads/foo' to 'foo
+ RunGit(['config', 'branch.%s.project' % branch, keyvals['PROJECT']],
agable 2014/05/30 14:24:07 a) Why are you saving the PROJECT value in .git/co
sheyang 2014/06/02 22:56:48 1. Yep it's not ideal... Just to make it consisten
+ error_ok=False)
+
def urlretrieve(source, destination):
"""urllib is broken for SSL connections via a proxy therefore we
@@ -1612,6 +1618,11 @@ def RietveldUpload(options, args, cl):
if remote_url:
upload_args.extend(['--base_url', remote_url])
+ project = RunGit(['config', 'branch.%s.project' % cl.GetBranch()],
+ error_ok=True).strip()
+ if project:
+ upload_args.extend(['--project', project])
+
try:
upload_args = ['upload'] + upload_args + args
logging.info('upload.RealMain(%s)', upload_args)
« no previous file with comments | « gcl.py ('k') | tests/gcl_unittest.py » ('j') | third_party/upload.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698