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

Unified Diff: gclient.py

Issue 437903002: Add --no-history option to fetch and gclient for shallow clones. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: gclient.py
diff --git a/gclient.py b/gclient.py
index b60884a0c2742bd55b43f01ddc5e5380af216bff..6068cd06c62736a9279c9f11a1d66f143a58ad46 100755
--- a/gclient.py
+++ b/gclient.py
@@ -1811,6 +1811,9 @@ def CMDsync(parser, args):
parser.add_option('--shallow', action='store_true',
help='GIT ONLY - Do a shallow clone into the cache dir. '
'Requires Git 1.9+')
+ parser.add_option('--no-history', action='store_true',
wtc 2014/08/03 04:12:49 It is unfortunate that the use of '_' or '-' in op
+ help='GIT ONLY - Reduces the size/time of the checkout at '
+ 'the cost of no history. Requires Git 1.9+')
iannucci 2014/08/02 21:22:15 it may be beneficial to specify a very low amount
Primiano Tucci (use gerrit) 2014/08/03 17:43:34 This is in principle a very nice feature. In pract
parser.add_option('--ignore_locks', action='store_true',
help='GIT ONLY - Ignore cache locks.')
(options, args) = parser.parse_args(args)

Powered by Google App Engine
This is Rietveld 408576698