Skip to content

Commit

Permalink
Reorder command options.
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhor98 committed Jun 16, 2019
1 parent ade4261 commit 276e90e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dvc/command/commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ def add_parser(subparsers, parent_parser):
formatter_class=argparse.RawDescriptionHelpFormatter,
)
commit_parser.add_argument(
"-f",
"--force",
"-d",
"--with-deps",
action="store_true",
default=False,
help="Commit even if checksums for dependencies/outputs changed.",
help="Commit all dependencies of the specified target.",
)
commit_parser.add_argument(
"-d",
"--with-deps",
"-f",
"--force",
action="store_true",
default=False,
help="Commit all dependencies of the specified target.",
help="Commit even if checksums for dependencies/outputs changed.",
)
commit_parser.add_argument(
"-R",
Expand Down

0 comments on commit 276e90e

Please sign in to comment.