aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Suder <jakub.suder@gmail.com>2010-01-12 22:38:21 +0100
committerJakub Suder <jakub.suder@gmail.com>2010-01-12 22:38:21 +0100
commit6e25f79f353a1c1f454ae0c44aa45ff3ab44551c (patch)
tree8597741526516f2cddf63aa9ee941b2fc40f91d3
parentda949cc554304bf9dc2b20ffcd470fb6b8a35576 (diff)
downloadgit-6e25f79f353a1c1f454ae0c44aa45ff3ab44551c.tar.gz
git-6e25f79f353a1c1f454ae0c44aa45ff3ab44551c.tar.xz
changed alias for --prefix from -p to -P
-rwxr-xr-xgit-subtree.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-subtree.sh b/git-subtree.sh
index cdf7b0992..0a5cafa77 100755
--- a/git-subtree.sh
+++ b/git-subtree.sh
@@ -16,7 +16,7 @@ git subtree split --prefix=<prefix> <commit...>
h,help show the help
q quiet
d show debug messages
-p,prefix= the name of the subdir to split out
+P,prefix= the name of the subdir to split out
m,message= use the given message as the commit message for the merge commit
options for 'split'
annotate= add a prefix to commit message of new commits
@@ -78,7 +78,7 @@ while [ $# -gt 0 ]; do
--annotate) annotate="$1"; shift ;;
--no-annotate) annotate= ;;
-b) branch="$1"; shift ;;
- -p) prefix="$1"; shift ;;
+ -P) prefix="$1"; shift ;;
-m) message="$1"; shift ;;
--no-prefix) prefix= ;;
--onto) onto="$1"; shift ;;