diff options
author | Junio C Hamano <junkio@cox.net> | 2007-03-31 23:27:41 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-03 23:44:32 -0700 |
commit | 5e7f56ac33f7a5583f9fa4e0b6088709fea7a6f8 (patch) | |
tree | a0a6896849d34635f947fabc82d8400c473f28b4 /git-commit.sh | |
parent | 30ca07a249744e57163c02250fca420cea364299 (diff) | |
download | git-5e7f56ac33f7a5583f9fa4e0b6088709fea7a6f8.tar.gz git-5e7f56ac33f7a5583f9fa4e0b6088709fea7a6f8.tar.xz |
git-read-tree --index-output=<file>
This corrects the interface mistake of the previous one, and
gives a command line parameter to the only plumbing command that
currently needs it: "git-read-tree".
We can add the calls to set_alternate_index_output() to other
plumbing commands that update the index if/when needed.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-commit.sh')
-rwxr-xr-x | git-commit.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-commit.sh b/git-commit.sh index 20c0dc806..9e0959aec 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -370,8 +370,8 @@ t,) # the same way. if test -z "$initial_commit" then - _GIT_INDEX_OUTPUT="$TMP_INDEX" \ - GIT_INDEX_FILE="$THIS_INDEX" git-read-tree -i -m HEAD + GIT_INDEX_FILE="$THIS_INDEX" \ + git-read-tree --index-output="$TMP_INDEX" -i -m HEAD else rm -f "$TMP_INDEX" fi || exit |