-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
read-tree: Fix regression with creation of a new index file.
Reading the index into an empty file has been broken by 5a56da5, since it causes the existing index to always be loaded first, and dies if it's an empty file: $ GIT_INDEX_FILE=`mktemp` git read-tree master fatal: index file smaller than expected It breaks for instance committing from git.el. This patch reverts to the previous behavior of only loading the index when merging it. Signed-off-by: Alexandre Julliard <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
- Loading branch information
Showing
2 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/sh | ||
|
||
test_description='test read-tree into a fresh index file' | ||
|
||
. ./test-lib.sh | ||
|
||
test_expect_success setup ' | ||
echo one >a && | ||
git add a && | ||
git commit -m initial | ||
' | ||
|
||
test_expect_success 'non-existent index file' ' | ||
rm -f new-index && | ||
GIT_INDEX_FILE=new-index git read-tree master | ||
' | ||
|
||
test_expect_success 'empty index file' ' | ||
rm -f new-index && | ||
> new-index && | ||
GIT_INDEX_FILE=new-index git read-tree master | ||
' | ||
|
||
test_done | ||
|