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

Unified Diff: fetch.py

Issue 13532013: add in deltaBaseCacheLimit workaround (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 years, 9 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: fetch.py
diff --git a/fetch.py b/fetch.py
index 71e62190d62889ee7f70845b8594342f140e8a7f..80dcce9a2f13a0e7aeefaf8871298a7737154af3 100755
--- a/fetch.py
+++ b/fetch.py
@@ -110,6 +110,9 @@ class GclientGitSvnCheckout(GclientCheckout, GitCheckout, SvnCheckout):
print 'Please run `svn ls %s`' % svn_spec['svn_url']
return 1
+ # TODO(dpranke): Work around issues w/ delta compression on big repos.
+ self.run_git('config', '--global', 'core.deltaBaseCacheLimit', '1G')
iannucci 2013/04/04 18:21:30 It would have been cooler to init an empty git rep
+
# Configure and do the gclient checkout.
self.run_gclient('config', '--spec', self.spec['gclient_spec'])
self.run_gclient('sync')
« 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