Index: gclient.py |
diff --git a/gclient.py b/gclient.py |
index 03c9ac906148f89f1ebc73350e707eb6c87078b9..78e66a5bd251608742887e3ec65a3876677706b4 100755 |
--- a/gclient.py |
+++ b/gclient.py |
@@ -2084,6 +2084,9 @@ def CMDsync(parser, args): |
parser.add_option('--lock_timeout', type='int', default=5000, |
help='GIT ONLY - Deadline (in seconds) to wait for git ' |
'cache lock to become available. Default is %default.') |
+ parser.add_option('--fetch_timeout', type='int', |
+ help='GIT ONLY - Deadline (in seconds) to wait for git ' |
+ 'fetch command. Default is no deadline.') |
Ryan Tseng
2016/08/25 00:06:34
nit: actually isn't it time inbetween output
|
(options, args) = parser.parse_args(args) |
client = GClient.LoadCurrentConfig(options) |