repo.or.cz
/
git
/
jrn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
git-check-attr: Add an --all option to show all attributes
[git/jrn.git]
/
t
/
t6110-rev-list-sparse.sh
blob
656ac7fe9dc1074c5173bcfcf96503b65f33c2f5
1
#!/bin/sh
2
3
test_description
=
'operations that cull histories in unusual ways'
4
. .
/
test-lib.sh
5
6
test_expect_success setup
'
7
test_commit A &&
8
test_commit B &&
9
test_commit C &&
10
git checkout -b side HEAD^ &&
11
test_commit D &&
12
test_commit E &&
13
git merge master
14
'
15
16
test_expect_success
'rev-list --first-parent --boundary'
'
17
git rev-list --first-parent --boundary HEAD^..
18
'
19
20
test_done