mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
init/sync: add --no-tags to match --tags
While this provides a way to undo earlier command line options (e.g. `repo sync --tags --no-tags`) which can be helpful for scripting & automation, this more importantly allows the user to override the manifest settings for syncing tags from a project. Bug: https://crbug.com/gerrit/12401 Change-Id: Id4c36cd82e6ca7cb073b5d63a09f6c7ccdebba83 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/304904 Reviewed-by: Raman Tenneti <rtenneti@google.com> Tested-by: Mike Frysinger <vapier@google.com>
This commit is contained in:
parent
7356114d90
commit
d68ed63328
@ -1044,7 +1044,7 @@ class Project(object):
|
|||||||
current_branch_only=None,
|
current_branch_only=None,
|
||||||
force_sync=False,
|
force_sync=False,
|
||||||
clone_bundle=True,
|
clone_bundle=True,
|
||||||
tags=True,
|
tags=None,
|
||||||
archive=False,
|
archive=False,
|
||||||
optimized_fetch=False,
|
optimized_fetch=False,
|
||||||
retry_fetches=0,
|
retry_fetches=0,
|
||||||
@ -1125,8 +1125,8 @@ class Project(object):
|
|||||||
elif self.manifest.default.sync_c:
|
elif self.manifest.default.sync_c:
|
||||||
current_branch_only = True
|
current_branch_only = True
|
||||||
|
|
||||||
if not self.sync_tags:
|
if tags is None:
|
||||||
tags = False
|
tags = self.sync_tags
|
||||||
|
|
||||||
if self.clone_depth:
|
if self.clone_depth:
|
||||||
depth = self.clone_depth
|
depth = self.clone_depth
|
||||||
|
5
repo
5
repo
@ -327,8 +327,11 @@ def InitParser(parser, gitc_init=False):
|
|||||||
group.add_option('--no-current-branch',
|
group.add_option('--no-current-branch',
|
||||||
dest='current_branch_only', action='store_false',
|
dest='current_branch_only', action='store_false',
|
||||||
help='fetch all manifest branches from server')
|
help='fetch all manifest branches from server')
|
||||||
|
group.add_option('--tags',
|
||||||
|
action='store_true',
|
||||||
|
help='fetch tags in the manifest')
|
||||||
group.add_option('--no-tags',
|
group.add_option('--no-tags',
|
||||||
dest='tags', default=True, action='store_false',
|
dest='tags', action='store_false',
|
||||||
help="don't fetch tags in the manifest")
|
help="don't fetch tags in the manifest")
|
||||||
|
|
||||||
# These are fundamentally different ways of structuring the checkout.
|
# These are fundamentally different ways of structuring the checkout.
|
||||||
|
@ -234,8 +234,11 @@ later is required to fix a server side protocol bug.
|
|||||||
help='fetch submodules from server')
|
help='fetch submodules from server')
|
||||||
p.add_option('--use-superproject', action='store_true',
|
p.add_option('--use-superproject', action='store_true',
|
||||||
help='use the manifest superproject to sync projects')
|
help='use the manifest superproject to sync projects')
|
||||||
|
p.add_option('--tags',
|
||||||
|
action='store_false',
|
||||||
|
help='fetch tags')
|
||||||
p.add_option('--no-tags',
|
p.add_option('--no-tags',
|
||||||
dest='tags', default=True, action='store_false',
|
dest='tags', action='store_false',
|
||||||
help="don't fetch tags")
|
help="don't fetch tags")
|
||||||
p.add_option('--optimized-fetch',
|
p.add_option('--optimized-fetch',
|
||||||
dest='optimized_fetch', action='store_true',
|
dest='optimized_fetch', action='store_true',
|
||||||
|
Loading…
Reference in New Issue
Block a user