3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='See why rewinding head breaks send-pack
12 test_expect_success
'working cpio' 'echo cpio-test | cpio -o > /dev/null'
15 test_expect_success setup
'
16 tree=$(git-write-tree) &&
17 commit=$(echo "Commit #0" | git-commit-tree $tree) &&
23 commit=$(echo "Commit #$i" | git-commit-tree $tree -p $parent) &&
24 parent=$commit || return 1
26 git-update-ref HEAD "$commit" &&
27 git-clone -l ./. victim &&
31 git-update-ref HEAD "$zero" &&
36 commit=$(echo "Rebase #$i" | git-commit-tree $tree -p $parent) &&
37 parent=$commit || return 1
39 git-update-ref HEAD "$commit" &&
44 'pushing rewound head should not barf but require --force' '
45 # should not fail but refuse to update.
46 if git-send-pack ./victim/.git/ master
48 # now it should fail with Pasky patch
49 echo >&2 Gaah, it should have failed.
52 echo >&2 Thanks, it correctly failed.
55 if cmp victim/.git/refs/heads/master .git/refs/heads/master
57 # should have been left as it was!
63 git-send-pack --force ./victim/.git/ master &&
64 cmp victim/.git/refs/heads/master .git/refs/heads/master