summaryrefslogtreecommitdiff
path: root/t/t7103-reset-bare.sh
blob: b25a77f910fcdd589775ce901bdf878c23677dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
 
test_description='git-reset in a bare repository'
. ./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' '
	! git reset --hard HEAD^
'
 
test_expect_success 'soft reset is allowed' '
	git reset --soft HEAD^ &&
	test "`git show --pretty=format:%s | head -n 1`" = "one"
'
 
test_done