git-commit: use update-index --stdin, instead of xargs.

Now update-index supports '-z --stdin', we do not have to rely on
platform xargs to support -0 option.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2005-09-26 18:13:53 -07:00
parent 1f7f99de84
commit 148ccbb038

View File

@ -94,13 +94,13 @@ esac
case "$all,$#" in
t,*)
git-diff-files --name-only -z |
xargs -0 git-update-index -q --remove --
git-update-index --remove -z --stdin
;;
,0)
;;
*)
git-diff-files --name-only -z "$@" |
xargs -0 git-update-index -q --remove --
git-update-index --remove -z --stdin
;;
esac || exit 1
git-update-index -q --refresh || exit 1