OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Gclient-specific SCM-specific operations.""" | 5 """Gclient-specific SCM-specific operations.""" |
6 | 6 |
7 import logging | 7 import logging |
8 import os | 8 import os |
9 import posixpath | 9 import posixpath |
10 import re | 10 import re |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
311 '\tTo resolve:\n' | 311 '\tTo resolve:\n' |
312 '\t\trm -rf %s\n' | 312 '\t\trm -rf %s\n' |
313 '\tAnd run gclient sync again\n' | 313 '\tAnd run gclient sync again\n' |
314 % (self.relpath, rev_str, self.relpath)) | 314 % (self.relpath, rev_str, self.relpath)) |
315 | 315 |
316 # See if the url has changed (the unittests use git://foo for the url, let | 316 # See if the url has changed (the unittests use git://foo for the url, let |
317 # that through). | 317 # that through). |
318 current_url = self._Capture(['config', 'remote.origin.url']) | 318 current_url = self._Capture(['config', 'remote.origin.url']) |
319 # TODO(maruel): Delete url != 'git://foo' since it's just to make the | 319 # TODO(maruel): Delete url != 'git://foo' since it's just to make the |
320 # unit test pass. (and update the comment above) | 320 # unit test pass. (and update the comment above) |
321 if (current_url != url and url != 'git://foo' and | 321 if (current_url != url and url != 'git://foo' and subprocess2.capture( |
M-A Ruel
2013/05/20 20:37:43
one condition per line, so that the line ends with
| |
322 self._Capture(['config', 'remote.origin.gclient']) != 'getoffmylawn'): | 322 ['git', 'config', 'remote.origin.gclient'], |
323 cwd=self.checkout_path).strip() != 'dontswitchurl'): | |
Dirk Pranke
2013/05/20 17:55:19
I would prefer that we have a comment here about w
| |
323 print('_____ switching %s to a new upstream' % self.relpath) | 324 print('_____ switching %s to a new upstream' % self.relpath) |
324 # Make sure it's clean | 325 # Make sure it's clean |
325 self._CheckClean(rev_str) | 326 self._CheckClean(rev_str) |
326 # Switch over to the new upstream | 327 # Switch over to the new upstream |
327 self._Run(['remote', 'set-url', 'origin', url], options) | 328 self._Run(['remote', 'set-url', 'origin', url], options) |
328 quiet = [] | 329 quiet = [] |
329 if not options.verbose: | 330 if not options.verbose: |
330 quiet = ['--quiet'] | 331 quiet = ['--quiet'] |
331 self._UpdateBranchHeads(options, fetch=False) | 332 self._UpdateBranchHeads(options, fetch=False) |
332 self._Run(['fetch', 'origin', '--prune'] + quiet, options) | 333 self._Run(['fetch', 'origin', '--prune'] + quiet, options) |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
852 def _GetCurrentBranch(self): | 853 def _GetCurrentBranch(self): |
853 # Returns name of current branch or None for detached HEAD | 854 # Returns name of current branch or None for detached HEAD |
854 branch = self._Capture(['rev-parse', '--abbrev-ref=strict', 'HEAD']) | 855 branch = self._Capture(['rev-parse', '--abbrev-ref=strict', 'HEAD']) |
855 if branch == 'HEAD': | 856 if branch == 'HEAD': |
856 return None | 857 return None |
857 return branch | 858 return branch |
858 | 859 |
859 def _Capture(self, args): | 860 def _Capture(self, args): |
860 return subprocess2.check_output( | 861 return subprocess2.check_output( |
861 ['git'] + args, | 862 ['git'] + args, |
862 stderr=subprocess2.PIPE, | 863 stderr=subprocess2.VOID, |
863 nag_timer=self.nag_timer, | 864 nag_timer=self.nag_timer, |
864 nag_max=self.nag_max, | 865 nag_max=self.nag_max, |
865 cwd=self.checkout_path).strip() | 866 cwd=self.checkout_path).strip() |
866 | 867 |
867 def _UpdateBranchHeads(self, options, fetch=False): | 868 def _UpdateBranchHeads(self, options, fetch=False): |
868 """Adds, and optionally fetches, "branch-heads" refspecs if requested.""" | 869 """Adds, and optionally fetches, "branch-heads" refspecs if requested.""" |
869 if hasattr(options, 'with_branch_heads') and options.with_branch_heads: | 870 if hasattr(options, 'with_branch_heads') and options.with_branch_heads: |
870 backoff_time = 5 | 871 backoff_time = 5 |
871 for _ in range(3): | 872 for _ in range(3): |
872 try: | 873 try: |
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1276 new_command.append('--force') | 1277 new_command.append('--force') |
1277 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1278 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1278 new_command.extend(('--accept', 'theirs-conflict')) | 1279 new_command.extend(('--accept', 'theirs-conflict')) |
1279 elif options.manually_grab_svn_rev: | 1280 elif options.manually_grab_svn_rev: |
1280 new_command.append('--force') | 1281 new_command.append('--force') |
1281 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1282 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1282 new_command.extend(('--accept', 'postpone')) | 1283 new_command.extend(('--accept', 'postpone')) |
1283 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1284 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1284 new_command.extend(('--accept', 'postpone')) | 1285 new_command.extend(('--accept', 'postpone')) |
1285 return new_command | 1286 return new_command |
OLD | NEW |