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

Side by Side Diff: git_cl.py

Issue 271703010: use canonical base URL for projects (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # Copyright (C) 2008 Evan Martin <martine@danga.com> 6 # Copyright (C) 2008 Evan Martin <martine@danga.com>
7 7
8 """A git-command for integrating reviews on Rietveld.""" 8 """A git-command for integrating reviews on Rietveld."""
9 9
10 import datetime 10 import datetime
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 'ERROR: Your diff contains %d commits already in %s.\n' 628 'ERROR: Your diff contains %d commits already in %s.\n'
629 'Run "git log --oneline %s..HEAD" to get a list of commits in ' 629 'Run "git log --oneline %s..HEAD" to get a list of commits in '
630 'the diff. If you are using a custom git flow, you can override' 630 'the diff. If you are using a custom git flow, you can override'
631 ' the reference used for this check with "git config ' 631 ' the reference used for this check with "git config '
632 'gitcl.remotebranch <git-ref>".' % ( 632 'gitcl.remotebranch <git-ref>".' % (
633 len(common_commits), remote_branch, upstream_git_obj)) 633 len(common_commits), remote_branch, upstream_git_obj))
634 return False 634 return False
635 return True 635 return True
636 636
637 def GetGitBaseUrlFromConfig(self): 637 def GetGitBaseUrlFromConfig(self):
638 """Return the configured base URL from branch.<branchname>.baseurl. 638 """Return the configured base URL from branch.<branchname>.canonical-url.
639 639
640 Returns None if it is not set. 640 Returns None if it is not set.
641 """ 641 """
642 return RunGit(['config', 'branch.%s.base-url' % self.GetBranch()], 642 return RunGit(['config', 'branch.%s.canonical-url' % self.GetBranch()],
643 error_ok=True).strip() 643 error_ok=True).strip()
Sergey Berezin 2014/05/13 18:55:22 Let's continue checking .base-url if .canonical-ur
sheyang 2014/05/13 22:01:36 Done.
644 644
645 def GetRemoteUrl(self): 645 def GetRemoteUrl(self):
646 """Return the configured remote URL, e.g. 'git://example.org/foo.git/'. 646 """Return the configured remote URL, e.g. 'git://example.org/foo.git/'.
647 647
648 Returns None if there is no remote. 648 Returns None if there is no remote.
649 """ 649 """
650 remote, _ = self.GetRemoteBranch() 650 remote, _ = self.GetRemoteBranch()
651 return RunGit(['config', 'remote.%s.url' % remote], error_ok=True).strip() 651 return RunGit(['config', 'remote.%s.url' % remote], error_ok=True).strip()
652 652
653 def GetIssue(self): 653 def GetIssue(self):
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 if 'GERRIT_HOST' in keyvals: 1067 if 'GERRIT_HOST' in keyvals:
1068 RunGit(['config', 'gerrit.host', keyvals['GERRIT_HOST']]) 1068 RunGit(['config', 'gerrit.host', keyvals['GERRIT_HOST']])
1069 1069
1070 if 'PUSH_URL_CONFIG' in keyvals and 'ORIGIN_URL_CONFIG' in keyvals: 1070 if 'PUSH_URL_CONFIG' in keyvals and 'ORIGIN_URL_CONFIG' in keyvals:
1071 #should be of the form 1071 #should be of the form
1072 #PUSH_URL_CONFIG: url.ssh://gitrw.chromium.org.pushinsteadof 1072 #PUSH_URL_CONFIG: url.ssh://gitrw.chromium.org.pushinsteadof
1073 #ORIGIN_URL_CONFIG: http://src.chromium.org/git 1073 #ORIGIN_URL_CONFIG: http://src.chromium.org/git
1074 RunGit(['config', keyvals['PUSH_URL_CONFIG'], 1074 RunGit(['config', keyvals['PUSH_URL_CONFIG'],
1075 keyvals['ORIGIN_URL_CONFIG']]) 1075 keyvals['ORIGIN_URL_CONFIG']])
1076 1076
1077 if 'CANONICAL_URL' in keyvals:
1078 branchref = RunGit(['symbolic-ref', 'HEAD']).strip()
1079 branch = ShortBranchName(branchref)
1080 RunGit(['config', 'branch.%s.canonical-url' % branch,
1081 keyvals['CANONICAL_URL']],
1082 error_ok=False)
1083
1077 1084
1078 def urlretrieve(source, destination): 1085 def urlretrieve(source, destination):
1079 """urllib is broken for SSL connections via a proxy therefore we 1086 """urllib is broken for SSL connections via a proxy therefore we
1080 can't use urllib.urlretrieve().""" 1087 can't use urllib.urlretrieve()."""
1081 with open(destination, 'w') as f: 1088 with open(destination, 'w') as f:
1082 f.write(urllib2.urlopen(source).read()) 1089 f.write(urllib2.urlopen(source).read())
1083 1090
1084 1091
1085 def hasSheBang(fname): 1092 def hasSheBang(fname):
1086 """Checks fname is a #! script.""" 1093 """Checks fname is a #! script."""
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 1153
1147 url = args[0] 1154 url = args[0]
1148 if not url.endswith('codereview.settings'): 1155 if not url.endswith('codereview.settings'):
1149 url = os.path.join(url, 'codereview.settings') 1156 url = os.path.join(url, 'codereview.settings')
1150 1157
1151 # Load code review settings and download hooks (if available). 1158 # Load code review settings and download hooks (if available).
1152 LoadCodereviewSettingsFromFile(urllib2.urlopen(url)) 1159 LoadCodereviewSettingsFromFile(urllib2.urlopen(url))
1153 DownloadHooks(True) 1160 DownloadHooks(True)
1154 return 0 1161 return 0
1155 1162
1156
1157 def CMDbaseurl(parser, args):
1158 """Gets or sets base-url for this branch."""
1159 branchref = RunGit(['symbolic-ref', 'HEAD']).strip()
1160 branch = ShortBranchName(branchref)
1161 _, args = parser.parse_args(args)
1162 if not args:
1163 print("Current base-url:")
1164 return RunGit(['config', 'branch.%s.base-url' % branch],
1165 error_ok=False).strip()
1166 else:
1167 print("Setting base-url to %s" % args[0])
1168 return RunGit(['config', 'branch.%s.base-url' % branch, args[0]],
1169 error_ok=False).strip()
Sergey Berezin 2014/05/13 18:55:22 Since you are modifying only chromium at the momen
sheyang 2014/05/13 22:01:36 Done.
1170
1171
1172 def CMDstatus(parser, args): 1163 def CMDstatus(parser, args):
1173 """Show status of changelists. 1164 """Show status of changelists.
1174 1165
1175 Colors are used to tell the state of the CL unless --fast is used: 1166 Colors are used to tell the state of the CL unless --fast is used:
1176 - Red not sent for review or broken 1167 - Red not sent for review or broken
1177 - Blue waiting for review 1168 - Blue waiting for review
1178 - Yellow waiting for you to reply to review 1169 - Yellow waiting for you to reply to review
1179 - Green LGTM'ed 1170 - Green LGTM'ed
1180 - Magenta in the commit queue 1171 - Magenta in the commit queue
1181 - Cyan was committed, branch can be deleted 1172 - Cyan was committed, branch can be deleted
(...skipping 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
2600 ('AppEngine is misbehaving and returned HTTP %d, again. Keep faith ' 2591 ('AppEngine is misbehaving and returned HTTP %d, again. Keep faith '
2601 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) 2592 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e)))
2602 2593
2603 2594
2604 if __name__ == '__main__': 2595 if __name__ == '__main__':
2605 # These affect sys.stdout so do it outside of main() to simplify mocks in 2596 # These affect sys.stdout so do it outside of main() to simplify mocks in
2606 # unit testing. 2597 # unit testing.
2607 fix_encoding.fix_encoding() 2598 fix_encoding.fix_encoding()
2608 colorama.init() 2599 colorama.init()
2609 sys.exit(main(sys.argv[1:])) 2600 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698