Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions dvc/command/checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,31 +29,31 @@ def add_parser(subparsers, parent_parser):
formatter_class=argparse.RawDescriptionHelpFormatter,
)
checkout_parser.add_argument(
"-f",
"--force",
"-d",
"--with-deps",
action="store_true",
default=False,
help="Do not prompt when removing working directory files.",
help="Checkout all dependencies of the specified target.",
)
checkout_parser.add_argument(
"--relink",
"-R",
"--recursive",
action="store_true",
default=False,
help="Recreate links or copies from cache to workspace.",
help="Checkout all subdirectories of the specified directory.",
)
checkout_parser.add_argument(
"-d",
"--with-deps",
"-f",
"--force",
action="store_true",
default=False,
help="Checkout all dependencies of the specified target.",
help="Do not prompt when removing working directory files.",
)
checkout_parser.add_argument(
"-R",
"--recursive",
"--relink",
action="store_true",
default=False,
help="Checkout all subdirectories of the specified directory.",
help="Recreate links or copies from cache to workspace.",
)
checkout_parser.add_argument(
"targets",
Expand Down