aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2017-06-22 13:19:45 +0900
committerKazuki Yamaguchi <k@rhe.jp>2017-06-22 13:19:45 +0900
commit0ecbac5a1baf3de90477ecdf5e7cd15e3c868b1b (patch)
treec1a03e1421bc612f110e6aa2b5786f4e8830e54d
parentab226542ffe9b11f368c4dcd8510ead77f237943 (diff)
downloadgit-test-0ecbac5a1baf3de90477ecdf5e7cd15e3c868b1b.tar.gz
Remove short option for --checkout=<path>
-rwxr-xr-xgit-test4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-test b/git-test
index ed50dd1..97bfc02 100755
--- a/git-test
+++ b/git-test
@@ -51,7 +51,7 @@ OPTIONS
-f, --force
Ignore the cached test result.
- -c <path>, --checkout=<path>
+ --checkout=<path>
Checkout a tree at <path> (relative to the top of the current
working tree) instead of $GIT_DIR/git-test/current.
@@ -108,7 +108,7 @@ OptionParser.new { |o|
o.on("-n", "--dry-run") { opts[:dry_run] = true }
o.on("-k", "--keep-going") { opts[:keep_going] = true }
o.on("-f", "--force") { opts[:force] = true }
- o.on("-c <path>", "--checkout=<path>") { |v| opts[:checkout] = v }
+ o.on("--checkout=<path>") { |v| opts[:checkout] = v }
o.on("--help") { usage(STDOUT); exit 0 }
}.parse!(ARGV)