applypatch: use "--index" to actually make git-apply write the
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Sun, 5 Jun 2005 21:12:53 +0000 (14:12 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sun, 5 Jun 2005 21:12:53 +0000 (14:12 -0700)
changes to the index file.

applypatch

index 6db3588..789917f 100755 (executable)
@@ -58,7 +58,7 @@ echo
 echo Applying "'$SUBJECT'"
 echo
 
-git-apply $PATCHFILE || exit 1
+git-apply --index $PATCHFILE || exit 1
 tree=$(git-write-tree) || exit 1
 echo Wrote tree $tree
 commit=$(git-commit-tree $tree -p $(cat .git/HEAD) < $final) || exit 1