2007-12-31 08:13:52 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-09-03 10:59:31 +02:00
|
|
|
test_description='git reset in a bare repository'
|
2007-12-31 08:13:52 +01:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup non-bare' '
|
|
|
|
echo one >file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m one &&
|
|
|
|
echo two >file &&
|
|
|
|
git commit -a -m two
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'setup bare' '
|
|
|
|
git clone --bare . bare.git &&
|
|
|
|
cd bare.git
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'hard reset is not allowed' '
|
2008-07-12 17:47:52 +02:00
|
|
|
test_must_fail git reset --hard HEAD^
|
2007-12-31 08:13:52 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'soft reset is allowed' '
|
|
|
|
git reset --soft HEAD^ &&
|
|
|
|
test "`git show --pretty=format:%s | head -n 1`" = "one"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|