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

Side by Side Diff: gclient_scm.py

Issue 18006002: Add --upstream option to gclient to scrape git checkouts back to upstream state. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 5 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 | « gclient.py ('k') | tests/gclient_scm_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 # 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 All updated files will be appended to file_list. 255 All updated files will be appended to file_list.
256 256
257 Raises: 257 Raises:
258 Error: if can't get URL for relative path. 258 Error: if can't get URL for relative path.
259 """ 259 """
260 if args: 260 if args:
261 raise gclient_utils.Error("Unsupported argument(s): %s" % ",".join(args)) 261 raise gclient_utils.Error("Unsupported argument(s): %s" % ",".join(args))
262 262
263 self._CheckMinVersion("1.6.6") 263 self._CheckMinVersion("1.6.6")
264 264
265 default_rev = "refs/heads/master" 265 if not options.nuclear:
266 default_rev = "refs/heads/master"
267 else:
268 default_rev = "refs/remotes/origin/master"
Dirk Pranke 2013/06/27 19:57:52 It seems like refs/heads/master can't be the right
266 url, deps_revision = gclient_utils.SplitUrlRevision(self.url) 269 url, deps_revision = gclient_utils.SplitUrlRevision(self.url)
267 rev_str = "" 270 rev_str = ""
268 revision = deps_revision 271 revision = deps_revision
269 managed = True 272 managed = True
270 if options.revision: 273 if options.revision:
271 # Override the revision number. 274 # Override the revision number.
272 revision = str(options.revision) 275 revision = str(options.revision)
273 if revision == 'unmanaged': 276 if revision == 'unmanaged':
274 revision = None 277 revision = None
275 managed = False 278 managed = False
276 if not revision: 279 if not revision:
277 revision = default_rev 280 revision = default_rev
278 281
282 if revision == 'HEAD' and options.nuclear:
283 revision = 'refs/remotes/origin/master'
Dirk Pranke 2013/06/27 19:57:52 This doesn't seem right. In what situation do we s
iannucci 2013/06/27 22:56:51 If we have deps e.g. third_party/WebKit@HEAD
284
279 if gclient_utils.IsDateRevision(revision): 285 if gclient_utils.IsDateRevision(revision):
280 # Date-revisions only work on git-repositories if the reflog hasn't 286 # Date-revisions only work on git-repositories if the reflog hasn't
281 # expired yet. Use rev-list to get the corresponding revision. 287 # expired yet. Use rev-list to get the corresponding revision.
282 # git rev-list -n 1 --before='time-stamp' branchname 288 # git rev-list -n 1 --before='time-stamp' branchname
283 if options.transitive: 289 if options.transitive:
284 print('Warning: --transitive only works for SVN repositories.') 290 print('Warning: --transitive only works for SVN repositories.')
285 revision = default_rev 291 revision = default_rev
286 292
287 rev_str = ' at %s' % revision 293 rev_str = ' at %s' % revision
288 files = [] 294 files = []
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 continue 429 continue
424 raise 430 raise
425 431
426 if verbose: 432 if verbose:
427 print(remote_output.strip()) 433 print(remote_output.strip())
428 434
429 self._UpdateBranchHeads(options, fetch=True) 435 self._UpdateBranchHeads(options, fetch=True)
430 436
431 # This is a big hammer, debatable if it should even be here... 437 # This is a big hammer, debatable if it should even be here...
432 if options.force or options.reset: 438 if options.force or options.reset:
433 self._Run(['reset', '--hard', 'HEAD'], options) 439 target = 'refs/remotes/origin/master' if options.nuclear else 'HEAD'
Dirk Pranke 2013/06/27 19:57:52 Same sorts of comments as above, plus it's not cle
440 self._Run(['reset', '--hard', target], options)
434 441
435 if current_type == 'detached': 442 if current_type == 'detached':
436 # case 0 443 # case 0
437 self._CheckClean(rev_str) 444 self._CheckClean(rev_str)
438 self._CheckDetachedHead(rev_str, options) 445 self._CheckDetachedHead(rev_str, options)
439 self._Capture(['checkout', '--quiet', '%s' % revision]) 446 self._Capture(['checkout', '--quiet', '%s' % revision])
440 if not printed_path: 447 if not printed_path:
441 print('\n_____ %s%s' % (self.relpath, rev_str)) 448 print('\n_____ %s%s' % (self.relpath, rev_str))
442 elif current_type == 'hash': 449 elif current_type == 'hash':
443 # case 1 450 # case 1
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 577
571 All reverted files will be appended to file_list. 578 All reverted files will be appended to file_list.
572 """ 579 """
573 if not os.path.isdir(self.checkout_path): 580 if not os.path.isdir(self.checkout_path):
574 # revert won't work if the directory doesn't exist. It needs to 581 # revert won't work if the directory doesn't exist. It needs to
575 # checkout instead. 582 # checkout instead.
576 print('\n_____ %s is missing, synching instead' % self.relpath) 583 print('\n_____ %s is missing, synching instead' % self.relpath)
577 # Don't reuse the args. 584 # Don't reuse the args.
578 return self.update(options, [], file_list) 585 return self.update(options, [], file_list)
579 586
580 default_rev = "refs/heads/master" 587 if options.nuclear:
588 default_rev = "refs/remotes/origin/master"
589 else:
590 default_rev = "refs/heads/master"
581 _, deps_revision = gclient_utils.SplitUrlRevision(self.url) 591 _, deps_revision = gclient_utils.SplitUrlRevision(self.url)
582 if not deps_revision: 592 if not deps_revision:
583 deps_revision = default_rev 593 deps_revision = default_rev
584 if deps_revision.startswith('refs/heads/'): 594 if deps_revision.startswith('refs/heads/'):
585 deps_revision = deps_revision.replace('refs/heads/', 'origin/') 595 deps_revision = deps_revision.replace('refs/heads/', 'origin/')
586 596
587 files = self._Capture(['diff', deps_revision, '--name-only']).split() 597 files = self._Capture(['diff', deps_revision, '--name-only']).split()
588 self._Run(['reset', '--hard', deps_revision], options) 598 self._Run(['reset', '--hard', deps_revision], options)
589 self._Run(['clean', '-f', '-d'], options) 599 self._Run(['clean', '-f', '-d'], options)
590 file_list.extend([os.path.join(self.checkout_path, f) for f in files]) 600 file_list.extend([os.path.join(self.checkout_path, f) for f in files])
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
1329 new_command.append('--force') 1339 new_command.append('--force')
1330 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: 1340 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]:
1331 new_command.extend(('--accept', 'theirs-conflict')) 1341 new_command.extend(('--accept', 'theirs-conflict'))
1332 elif options.manually_grab_svn_rev: 1342 elif options.manually_grab_svn_rev:
1333 new_command.append('--force') 1343 new_command.append('--force')
1334 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: 1344 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]:
1335 new_command.extend(('--accept', 'postpone')) 1345 new_command.extend(('--accept', 'postpone'))
1336 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: 1346 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]:
1337 new_command.extend(('--accept', 'postpone')) 1347 new_command.extend(('--accept', 'postpone'))
1338 return new_command 1348 return new_command
OLDNEW
« no previous file with comments | « gclient.py ('k') | tests/gclient_scm_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698