summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrepo2
-rw-r--r--subcmds/init.py4
2 files changed, 2 insertions, 4 deletions
diff --git a/repo b/repo
index d32a84b9..768050ea 100755
--- a/repo
+++ b/repo
@@ -318,7 +318,7 @@ def GetParser(gitc_init=False):
318 help='filter for use with --partial-clone ' 318 help='filter for use with --partial-clone '
319 '[default: %default]') 319 '[default: %default]')
320 group.add_option('--worktree', action='store_true', 320 group.add_option('--worktree', action='store_true',
321 help=optparse.SUPPRESS_HELP) 321 help='use git-worktree to manage projects')
322 group.add_option('--archive', action='store_true', 322 group.add_option('--archive', action='store_true',
323 help='checkout an archive instead of a git repository for ' 323 help='checkout an archive instead of a git repository for '
324 'each project. See git archive.') 324 'each project. See git archive.')
diff --git a/subcmds/init.py b/subcmds/init.py
index c2376b65..471efc1e 100644
--- a/subcmds/init.py
+++ b/subcmds/init.py
@@ -127,10 +127,8 @@ to update the working directory files.
127 g.add_option('--clone-filter', action='store', default='blob:none', 127 g.add_option('--clone-filter', action='store', default='blob:none',
128 dest='clone_filter', 128 dest='clone_filter',
129 help='filter for use with --partial-clone [default: %default]') 129 help='filter for use with --partial-clone [default: %default]')
130 # TODO(vapier): Expose option with real help text once this has been in the
131 # wild for a while w/out significant bug reports. Goal is by ~Sep 2020.
132 g.add_option('--worktree', action='store_true', 130 g.add_option('--worktree', action='store_true',
133 help=optparse.SUPPRESS_HELP) 131 help='use git-worktree to manage projects')
134 g.add_option('--archive', 132 g.add_option('--archive',
135 dest='archive', action='store_true', 133 dest='archive', action='store_true',
136 help='checkout an archive instead of a git repository for ' 134 help='checkout an archive instead of a git repository for '