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) |