test-conflict
15 lines
| 244 B
| text/plain
|
TextLexer
/ tests / test-conflict
Thomas Arendsen Hein
|
r544 | #!/bin/sh | ||
mpm@selenic.com
|
r346 | |||
hg init | ||||
echo "nothing" > a | ||||
hg add a | ||||
Thomas Arendsen Hein
|
r1933 | hg commit -m ancestor -d "1000000 0" | ||
mpm@selenic.com
|
r346 | echo "something" > a | ||
Thomas Arendsen Hein
|
r1933 | hg commit -m branch1 -d "1000000 0" | ||
mpm@selenic.com
|
r346 | hg co 0 | ||
echo "something else" > a | ||||
Thomas Arendsen Hein
|
r1933 | hg commit -m branch2 -d "1000000 0" | ||
Vadim Gelfer
|
r2283 | hg merge 1 | ||
mpm@selenic.com
|
r346 | hg id | ||
Alexis S. L. Carvalho
|
r4387 | cat a | ||
mpm@selenic.com
|
r346 | hg status | ||