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 from __future__ import print_function | 7 from __future__ import print_function |
8 | 8 |
9 import errno | 9 import errno |
10 import logging | 10 import logging |
(...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1192 quiet = (not options.verbose) | 1192 quiet = (not options.verbose) |
1193 checkout_args = ['checkout'] | 1193 checkout_args = ['checkout'] |
1194 if force: | 1194 if force: |
1195 checkout_args.append('--force') | 1195 checkout_args.append('--force') |
1196 if quiet: | 1196 if quiet: |
1197 checkout_args.append('--quiet') | 1197 checkout_args.append('--quiet') |
1198 checkout_args.append(ref) | 1198 checkout_args.append(ref) |
1199 return self._Capture(checkout_args) | 1199 return self._Capture(checkout_args) |
1200 | 1200 |
1201 def _Fetch(self, options, remote=None, prune=False, quiet=False): | 1201 def _Fetch(self, options, remote=None, prune=False, quiet=False): |
1202 kill_timeout = float(os.getenv('GCLIENT_KILL_GIT_FETCH_AFTER', 0)) | 1202 kill_timeout = float(getattr(options, 'fetch_timeout', 0)) |
1203 cfg = gclient_utils.DefaultIndexPackConfig(self.url) | 1203 cfg = gclient_utils.DefaultIndexPackConfig(self.url) |
1204 fetch_cmd = cfg + [ | 1204 fetch_cmd = cfg + [ |
1205 'fetch', | 1205 'fetch', |
1206 remote or self.remote, | 1206 remote or self.remote, |
1207 ] | 1207 ] |
1208 | 1208 |
1209 if prune: | 1209 if prune: |
1210 fetch_cmd.append('--prune') | 1210 fetch_cmd.append('--prune') |
1211 if options.verbose: | 1211 if options.verbose: |
1212 fetch_cmd.append('--verbose') | 1212 fetch_cmd.append('--verbose') |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1729 new_command.append('--force') | 1729 new_command.append('--force') |
1730 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1730 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1731 new_command.extend(('--accept', 'theirs-conflict')) | 1731 new_command.extend(('--accept', 'theirs-conflict')) |
1732 elif options.manually_grab_svn_rev: | 1732 elif options.manually_grab_svn_rev: |
1733 new_command.append('--force') | 1733 new_command.append('--force') |
1734 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1734 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1735 new_command.extend(('--accept', 'postpone')) | 1735 new_command.extend(('--accept', 'postpone')) |
1736 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1736 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1737 new_command.extend(('--accept', 'postpone')) | 1737 new_command.extend(('--accept', 'postpone')) |
1738 return new_command | 1738 return new_command |
OLD | NEW |