Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-11-26 00:33:14 +0300
committerJunio C Hamano <junkio@cox.net>2005-11-26 00:33:14 +0300
commitf678dd180a037283decb76201b537dca24de848f (patch)
tree5f1f1dcb7b80fc18f4e0c691b180482b0da04a70 /git-commit.sh
parent3a2f2bb354d920e3f1b7f4334d3656c77e9fb423 (diff)
Prevent "git-commit -a path1 path2..."
When you want to create a partial commit, giving -a by mistake would ignore the given path. Prevent it. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-commit.sh')
-rwxr-xr-xgit-commit.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-commit.sh b/git-commit.sh
index 41955e8e64..27aea80a43 100755
--- a/git-commit.sh
+++ b/git-commit.sh
@@ -92,10 +92,13 @@ tt*)
esac
case "$all,$#" in
-t,*)
+t,0)
git-diff-files --name-only -z |
git-update-index --remove -z --stdin
;;
+t,*)
+ die "Cannot use -a and explicit files at the same time."
+ ;;
,0)
;;
*)