1#!/bin/sh
23
test_description='operations that cull histories in unusual ways'
4. ./test-lib.sh
56
test_expect_success setup '
7test_commit A &&
8test_commit B &&
9test_commit C &&
10git checkout -b side HEAD^ &&
11test_commit D &&
12test_commit E &&
13git merge master
14'
1516
test_expect_success 'rev-list --first-parent --boundary' '
17git rev-list --first-parent --boundary HEAD^..
18'
1920
test_done