aboutsummaryrefslogtreecommitdiff
path: root/git-commit.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-10-18 00:27:50 -0700
committerJunio C Hamano <junkio@cox.net>2005-10-18 00:27:50 -0700
commit4bfe1199eabb41eb1f1d67f4ee24df028eb21300 (patch)
treef7e1a8387657c4da9991861ae44347813b67bc46 /git-commit.sh
parent694a764fc2af9463c2462ab1fc92b442fce1a54c (diff)
downloadgit-4bfe1199eabb41eb1f1d67f4ee24df028eb21300.tar.gz
git-4bfe1199eabb41eb1f1d67f4ee24df028eb21300.tar.xz
Teach git-add and git-commit to handle filenames starting with '-'.
Recent '--' fixes to "git diff" by Linus made it possible to specify filenames that start with '-'. But in order to do that, you need to be able to add and commit such file to begin with. Teach git-add and git-commit to honor the same '--' convention. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-commit.sh')
-rwxr-xr-xgit-commit.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-commit.sh b/git-commit.sh
index 5bdee54a4..96a884f3b 100755
--- a/git-commit.sh
+++ b/git-commit.sh
@@ -99,7 +99,7 @@ t,*)
,0)
;;
*)
- git-diff-files --name-only -z "$@" |
+ git-diff-files --name-only -z -- "$@" |
git-update-index --remove -z --stdin
;;
esac || exit 1