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

Unified Diff: gclient_scm.py

Issue 132803004: Always ignore submodules. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 11 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 | « no previous file | no next file » | 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 c80575e0d2fae66f8a5a134443e3bd1db3d643b2..8572f094a38befc1f5741b235b3d03f8ca51c1ff 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -255,8 +255,6 @@ class GitWrapper(SCMWrapper):
def UpdateSubmoduleConfig(self):
submod_cmd = ['git', 'config', '-f', '$toplevel/.git/config',
- 'submodule.$name.ignore', '||',
- 'git', 'config', '-f', '$toplevel/.git/config',
'submodule.$name.ignore', 'all']
Paweł Hajdan Jr. 2014/01/16 17:20:35 Ah, I missed there is still submodule.$name here.
cmd = ['git', 'submodule', '--quiet', 'foreach', ' '.join(submod_cmd)]
Paweł Hajdan Jr. 2014/01/16 03:20:06 Do we still need the git submodule foreach then?
szager1 2014/01/16 05:44:52 Yes, we do; the submodule foreach command is the t
cmd2 = ['git', 'config', 'diff.ignoreSubmodules', 'all']
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698