summaryrefslogtreecommitdiff
path: root/t/t6110-rev-list-sparse.sh
blob: 2a267e84cdaebce5b0a1e043521c68204d16eb6c (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
#!/bin/sh
 
test_description='operations that cull histories in unusual ways'
. ./test-lib.sh
 
test_commit () {
	echo "$1" >"$1.file" &&
	git add "$1.file" &&
	test_tick &&
	git commit -m "$1"
}
 
test_expect_success setup '
	test_commit A &&
	test_commit B &&
	test_commit C &&
	git checkout -b side HEAD^ &&
	test_commit D &&
	test_commit E &&
	git merge master
'
 
test_expect_success 'rev-list --first-parent --boundary' '
	git rev-list --first-parent --boundary HEAD^..
'
 
test_done