mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
4b28cd9f2f
* jc/maint-rev-list-culled-boundary: list-objects.c: don't add an unparsed NULL as a pending tree Conflicts: list-objects.c
20 lines
384 B
Bash
Executable file
20 lines
384 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='operations that cull histories in unusual ways'
|
|
. ./test-lib.sh
|
|
|
|
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
|