##// END OF EJS Templates
transplant: split filter args into changelog entry and patch
transplant: split filter args into changelog entry and patch

File last commit:

r3502:8dc14d63 default
r3759:e96f97ca default
Show More
test-newbranch
33 lines | 477 B | text/plain | TextLexer
Matt Mackall
Add some basic branch name tests
r3420 #!/bin/sh
hg init t
cd t
Matt Mackall
add branch and branches commands
r3502 hg branches
Matt Mackall
Add some basic branch name tests
r3420
echo foo > a
hg add a
hg ci -m "initial" -d "0 0"
Matt Mackall
add branch and branches commands
r3502 hg branch foo
hg branch
Matt Mackall
Add some basic branch name tests
r3420 hg ci -m "add branch name" -d "0 0"
Matt Mackall
add branch and branches commands
r3502 hg branch bar
Matt Mackall
Add some basic branch name tests
r3420 hg ci -m "change branch name" -d "0 0"
Matt Mackall
add branch and branches commands
r3502 hg branch ""
Matt Mackall
Add some basic branch name tests
r3420 hg ci -m "clear branch name" -d "0 0"
hg co foo
Matt Mackall
add branch and branches commands
r3502 hg branch
Matt Mackall
Add some basic branch name tests
r3420 echo bleah > a
hg ci -m "modify a branch" -d "0 0"
hg merge
Matt Mackall
add branch and branches commands
r3502 hg branch
Matt Mackall
Add some basic branch name tests
r3420 HG_MERGE=true hg ci -m "merge" -d "0 0"
hg log
Matt Mackall
add branch and branches commands
r3502 hg branches
hg branches -q
Thomas Arendsen Hein
Add test for invalid branch cache (fixed by 27ebe4efe98e)
r3451 echo % test for invalid branch cache
hg rollback
hg tip