diff options
author | Junio C Hamano <junkio@cox.net> | 2005-10-18 00:27:50 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-18 00:27:50 -0700 |
commit | 4bfe1199eabb41eb1f1d67f4ee24df028eb21300 (patch) | |
tree | f7e1a8387657c4da9991861ae44347813b67bc46 | |
parent | Handle "-" at beginning of filenames, part 3 (diff) | |
download | tgif-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>
-rwxr-xr-x | git-add.sh | 4 | ||||
-rwxr-xr-x | git-commit.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/git-add.sh b/git-add.sh index a8498c729a..4bf41281d5 100755 --- a/git-add.sh +++ b/git-add.sh @@ -23,10 +23,10 @@ if test -f "$GIT_DIR/info/exclude" then git-ls-files -z \ --exclude-from="$GIT_DIR/info/exclude" \ - --others --exclude-per-directory=.gitignore "$@" + --others --exclude-per-directory=.gitignore -- "$@" else git-ls-files -z \ - --others --exclude-per-directory=.gitignore "$@" + --others --exclude-per-directory=.gitignore -- "$@" fi | case "$show_only" in true) diff --git a/git-commit.sh b/git-commit.sh index 5bdee54a46..96a884f3bc 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 |