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

Unified Diff: gclient_scm.py

Issue 9401011: Revert r121986 "If both -f and -D are specified when updating, remove all untracked directories" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gclient.py ('k') | tests/gclient_scm_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_scm.py
diff --git a/gclient_scm.py b/gclient_scm.py
index 9f74cc57a6d390c7407e37ae0f6e797b84aaedee..00013465859c7960e34cc4126bef3cf7a13c7d34 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -442,20 +442,6 @@ class GitWrapper(SCMWrapper):
if verbose:
print('Checked out revision %s' % self.revinfo(options, (), None))
- # If --force and --delete_unversioned_trees are specified, remove any
- # untracked directories.
- if options.force and options.delete_unversioned_trees:
- # GIT.CaptureStatus() uses 'dit diff' to compare to a specific SHA1 (the
- # merge-base by default), so doesn't include untracked files. So we use
- # 'git ls-files --directory --others --exclude-standard' here directly.
- paths = scm.GIT.Capture(
- ['ls-files', '--directory', '--others', '--exclude-standard'],
- self.checkout_path)
- for path in (p for p in paths.splitlines() if p.endswith('/')):
- print('\n_____ removing unversioned directory %s' % path)
- gclient_utils.RemoveDirectory(os.path.join(self.checkout_path, path))
-
-
def revert(self, options, args, file_list):
"""Reverts local modifications.
@@ -936,7 +922,7 @@ class SVNWrapper(SCMWrapper):
if not options.force and not options.reset:
# Look for local modifications but ignore unversioned files.
for status in scm.SVN.CaptureStatus(None, self.checkout_path):
- if status[0][0] != '?':
+ if status[0] != '?':
raise gclient_utils.Error(
('Can\'t switch the checkout to %s; UUID don\'t match and '
'there is local changes in %s. Delete the directory and '
@@ -961,15 +947,6 @@ class SVNWrapper(SCMWrapper):
command = self._AddAdditionalUpdateFlags(command, options, revision)
self._RunAndGetFileList(command, options, file_list, self._root_dir)
- # If --force and --delete_unversioned_trees are specified, remove any
- # untracked files and directories.
- if options.force and options.delete_unversioned_trees:
- for status in scm.SVN.CaptureStatus(None, self.checkout_path):
- path = os.path.join(self.checkout_path, status[1])
- if (status[0][0] == '?' and os.path.isdir(path)):
- print('\n_____ removing unversioned directory %s' % status[1])
- gclient_utils.RemoveDirectory(os.path.join(path))
-
def updatesingle(self, options, args, file_list):
filename = args.pop()
if scm.SVN.AssertVersion("1.5")[0]:
« 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