2008-03-09 07:27:04 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='read-tree -u --reset'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
# two-tree test
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
git init &&
|
|
|
|
mkdir df &&
|
|
|
|
echo content >df/file &&
|
|
|
|
git add df/file &&
|
|
|
|
git commit -m one &&
|
|
|
|
git ls-files >expect &&
|
|
|
|
rm -rf df &&
|
|
|
|
echo content >df &&
|
|
|
|
git add df &&
|
|
|
|
echo content >new &&
|
|
|
|
git add new &&
|
|
|
|
git commit -m two
|
|
|
|
'
|
|
|
|
|
2008-03-07 05:12:28 +03:00
|
|
|
test_expect_success 'reset should work' '
|
2008-03-09 07:27:04 +03:00
|
|
|
git read-tree -u --reset HEAD^ &&
|
|
|
|
git ls-files >actual &&
|
2008-03-13 00:36:36 +03:00
|
|
|
test_cmp expect actual
|
2008-03-09 07:27:04 +03:00
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|