diff --git a/repo b/repo index d32a84b9..768050ea 100755 --- a/repo +++ b/repo @@ -318,7 +318,7 @@ def GetParser(gitc_init=False): help='filter for use with --partial-clone ' '[default: %default]') group.add_option('--worktree', action='store_true', - help=optparse.SUPPRESS_HELP) + help='use git-worktree to manage projects') group.add_option('--archive', action='store_true', help='checkout an archive instead of a git repository for ' '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. g.add_option('--clone-filter', action='store', default='blob:none', dest='clone_filter', help='filter for use with --partial-clone [default: %default]') - # TODO(vapier): Expose option with real help text once this has been in the - # wild for a while w/out significant bug reports. Goal is by ~Sep 2020. g.add_option('--worktree', action='store_true', - help=optparse.SUPPRESS_HELP) + help='use git-worktree to manage projects') g.add_option('--archive', dest='archive', action='store_true', help='checkout an archive instead of a git repository for '