test-merge5
25 lines
| 510 B
| text/plain
|
TextLexer
/ tests / test-merge5
Thomas Arendsen Hein
|
r800 | #!/bin/sh | ||
mpm@selenic.com
|
r415 | |||
mkdir t | ||||
cd t | ||||
hg init | ||||
echo This is file a1 > a | ||||
echo This is file b1 > b | ||||
hg add a b | ||||
Thomas Arendsen Hein
|
r1933 | hg commit -m "commit #0" -d "1000000 0" | ||
mpm@selenic.com
|
r415 | echo This is file b22 > b | ||
Thomas Arendsen Hein
|
r1933 | hg commit -m"comment #1" -d "1000000 0" | ||
mpm@selenic.com
|
r415 | hg update 0 | ||
rm b | ||||
Thomas Arendsen Hein
|
r1933 | hg commit -A -m"comment #2" -d "1000000 0" | ||
Matt Mackall
|
r6350 | mv a c | ||
Thomas Arendsen Hein
|
r1963 | # in theory, we shouldn't need the "-y" below, but it prevents | ||
mpm@selenic.com
|
r415 | # this test from hanging when "hg update" erroneously prompts the | ||
# user for "keep or delete" | ||||
Matt Mackall
|
r6350 | echo % should abort | ||
hg update -y 1 | ||||
mv c a | ||||
echo % should succeed | ||||
Thomas Arendsen Hein
|
r1963 | hg update -y 1 | ||
mpm@selenic.com
|
r415 | exit 0 | ||