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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 logging.debug('Looking for git-svn configuration optimizations.') | 582 logging.debug('Looking for git-svn configuration optimizations.') |
583 if scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], | 583 if scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], |
584 cwd=self.checkout_path): | 584 cwd=self.checkout_path): |
585 scm.GIT.Capture(['fetch'], cwd=self.checkout_path) | 585 scm.GIT.Capture(['fetch'], cwd=self.checkout_path) |
586 except subprocess2.CalledProcessError: | 586 except subprocess2.CalledProcessError: |
587 logging.debug('git config --get svn-remote.svn.fetch failed, ' | 587 logging.debug('git config --get svn-remote.svn.fetch failed, ' |
588 'ignoring possible optimization.') | 588 'ignoring possible optimization.') |
589 if options.verbose: | 589 if options.verbose: |
590 print('Running git svn fetch. This might take a while.\n') | 590 print('Running git svn fetch. This might take a while.\n') |
591 scm.GIT.Capture(['svn', 'fetch'], cwd=self.checkout_path) | 591 scm.GIT.Capture(['svn', 'fetch'], cwd=self.checkout_path) |
592 sha1 = scm.GIT.GetSha1ForSvnRev(cwd=self.checkout_path, rev=rev) | 592 try: |
| 593 sha1 = scm.GIT.GetSha1ForSvnRev(cwd=self.checkout_path, rev=rev) |
| 594 except gclient_utils.Error, e: |
| 595 sha1 = e.message |
| 596 print('\nWarning: Could not find a git revision with accurate\n' |
| 597 '.DEPS.git that maps to SVN revision %s. Sync-ing to\n' |
| 598 'the closest sane git revision, which is:\n' |
| 599 ' %s\n' % (rev, e.message)) |
593 if not sha1: | 600 if not sha1: |
594 raise gclient_utils.Error( | 601 raise gclient_utils.Error( |
595 ( 'It appears that either your git-svn remote is incorrectly\n' | 602 ( 'It appears that either your git-svn remote is incorrectly\n' |
596 'configured or the revision in your safesync_url is\n' | 603 'configured or the revision in your safesync_url is\n' |
597 'higher than git-svn remote\'s HEAD as we couldn\'t find a\n' | 604 'higher than git-svn remote\'s HEAD as we couldn\'t find a\n' |
598 'corresponding git hash for SVN rev %s.' ) % rev) | 605 'corresponding git hash for SVN rev %s.' ) % rev) |
599 elif scm.GIT.IsValidRevision(cwd=self.checkout_path, rev=rev): | 606 elif scm.GIT.IsValidRevision(cwd=self.checkout_path, rev=rev): |
600 sha1 = rev | 607 sha1 = rev |
601 | 608 |
602 if not sha1: | 609 if not sha1: |
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1200 new_command.append('--force') | 1207 new_command.append('--force') |
1201 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1208 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1202 new_command.extend(('--accept', 'theirs-conflict')) | 1209 new_command.extend(('--accept', 'theirs-conflict')) |
1203 elif options.manually_grab_svn_rev: | 1210 elif options.manually_grab_svn_rev: |
1204 new_command.append('--force') | 1211 new_command.append('--force') |
1205 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1212 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1206 new_command.extend(('--accept', 'postpone')) | 1213 new_command.extend(('--accept', 'postpone')) |
1207 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1214 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1208 new_command.extend(('--accept', 'postpone')) | 1215 new_command.extend(('--accept', 'postpone')) |
1209 return new_command | 1216 return new_command |
OLD | NEW |