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
Add --ignore flag to deploy, import, add to ignore errors related to checking out specific revisions (which may occur if the history of a library was rewritten during rebase)
dict(name='path', nargs='?', help='Destination name or path. Default: current %s.'%cwd_type),
1308
+
dict(name=['-I', '--ignore'], action='store_true', help='Ignore errors related to cloning and updating.'),
1308
1309
dict(name='--depth', nargs='?', help='Number of revisions to fetch from the remote repository. Default: all revisions.'),
1309
1310
dict(name='--protocol', nargs='?', help='Transport protocol for the source control management. Supported: https, http, ssh, git. Default: inferred from URL.'),
1310
1311
help='Import a program and its dependencies into the current directory or specified destination path.')
dict(name=['-I', '--ignore'], action='store_true', help='Ignore errors related to cloning and updating.'),
1357
1359
dict(name='--depth', nargs='?', help='Number of revisions to fetch from the remote repository. Default: all revisions.'),
1358
1360
dict(name='--protocol', nargs='?', help='Transport protocol for the source control management. Supported: https, http, ssh, git. Default: inferred from URL.'),
1359
1361
help='Import missing dependencies in the current program or library.')
dict(name='path', nargs='?', help='Destination name or path. Default: current folder.'),
1384
+
dict(name=['-I', '--ignore'], action='store_true', help='Ignore errors related to cloning and updating.'),
1382
1385
dict(name='--depth', nargs='?', help='Number of revisions to fetch from the remote repository. Default: all revisions.'),
1383
1386
dict(name='--protocol', nargs='?', help='Transport protocol for the source control management. Supported: https, http, ssh, git. Default: inferred from URL.'),
1384
1387
help='Add a library and its dependencies into the current %s or specified destination path.'%cwd_type)
dict(name='rev', nargs='?', help='Revision, tag or branch'),
1453
1456
dict(name=['-C', '--clean'], action='store_true', help='Perform a clean update and discard all local changes. WARNING: This action cannot be undone. Use with caution.'),
1454
1457
dict(name=['-F', '--force'], action='store_true', help='Enforce the original layout and will remove any local libraries and also libraries containing uncommitted or unpublished changes. WARNING: This action cannot be undone. Use with caution.'),
1455
-
dict(name=['-I', '--ignore'], action='store_true', help='Ignore errors regarding unpublished libraries, unpublished or uncommitted changes, and attempt to update from associated remote repository URLs.'),
1458
+
dict(name=['-I', '--ignore'], action='store_true', help='Ignore errors related to unpublished libraries, unpublished or uncommitted changes, and attempt to update from associated remote repository URLs.'),
1456
1459
dict(name='--depth', nargs='?', help='Number of revisions to fetch from the remote repository. Default: all revisions.'),
1457
1460
dict(name='--protocol', nargs='?', help='Transport protocol for the source control management. Supported: https, http, ssh, git. Default: inferred from URL.'),
1458
1461
help='Update current %s and its dependencies from associated remote repository URLs.'%cwd_type)
0 commit comments