summaryrefslogtreecommitdiffstats
path: root/repo
diff options
context:
space:
mode:
Diffstat (limited to 'repo')
-rwxr-xr-xrepo7
1 files changed, 6 insertions, 1 deletions
diff --git a/repo b/repo
index 6d7ce42a..c084b654 100755
--- a/repo
+++ b/repo
@@ -149,7 +149,7 @@ if not REPO_REV:
149BUG_URL = 'https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue' 149BUG_URL = 'https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue'
150 150
151# increment this whenever we make important changes to this script 151# increment this whenever we make important changes to this script
152VERSION = (2, 17) 152VERSION = (2, 21)
153 153
154# increment this if the MAINTAINER_KEYS block is modified 154# increment this if the MAINTAINER_KEYS block is modified
155KEYRING_VERSION = (2, 3) 155KEYRING_VERSION = (2, 3)
@@ -382,6 +382,11 @@ def InitParser(parser, gitc_init=False):
382 group.add_option('--no-clone-bundle', 382 group.add_option('--no-clone-bundle',
383 dest='clone_bundle', action='store_false', 383 dest='clone_bundle', action='store_false',
384 help='disable use of /clone.bundle on HTTP/HTTPS (default if --partial-clone)') 384 help='disable use of /clone.bundle on HTTP/HTTPS (default if --partial-clone)')
385 group.add_option('--git-lfs', action='store_true',
386 help='enable Git LFS support')
387 group.add_option('--no-git-lfs',
388 dest='git_lfs', action='store_false',
389 help='disable Git LFS support')
385 390
386 # Tool. 391 # Tool.
387 group = parser.add_option_group('repo Version options') 392 group = parser.add_option_group('repo Version options')