You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Disallow to delete any Repo record from existing Manifest. This have only meaning when on UPDATE operation mode", # noqa: E501
87
87
dest="no_repo_delete",
88
88
)
89
+
parser.add_argument(
90
+
"--sha1-only",
91
+
action="store_true",
92
+
help="Use SHA1 as only value (with branch if available) for every considered Repo. This is particulary useful when we want to point to exact point of Repos states", # noqa: E501
93
+
dest="sha1_only",
94
+
)
95
+
parser.add_argument(
96
+
"-X",
97
+
"--skip-manifest",
98
+
help="Skip manifest repository if found. If not, it is ignored. For this filter to work, the Workspace needs to be present. And it is only applied after the processing of the Repositories", # noqa: E501
99
+
dest="skip_manifest",
100
+
default=False,
101
+
action="store_true",
102
+
)
103
+
parser.add_argument(
104
+
"-M",
105
+
"--only-manifest",
106
+
help="Only work with manifest repository if found. If not, the Error is thrown that list of Repositories ends up empty. For this filter to work, the Workspace needs to be present. And it is only applied after the processing of the Repositories", # noqa: E501
help="show full GIT status also for leftovers, if there are some, that have valid repository on the filesystem. here hard error about the repository is ignored and no status is displayed", # noqa: E501
0 commit comments