##// END OF EJS Templates
merge with stable
merge with stable

File last commit:

r12156:4c94b6d0 default
r12278:c4c2ba55 merge default
Show More
test-newbranch
113 lines | 1.7 KiB | text/plain | TextLexer
Matt Mackall
Add some basic branch name tests
r3420 #!/bin/sh
John Mulligan
store all heads of a branch in the branch cache...
r7654 branchcache=.hg/branchheads.cache
Alexis S. L. Carvalho
tests: hide the name of the branch cache file
r6160
Matt Mackall
Add some basic branch name tests
r3420 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
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg ci -m "initial"
Matt Mackall
add branch and branches commands
r3502 hg branch foo
hg branch
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg ci -m "add branch name"
Matt Mackall
add branch and branches commands
r3502 hg branch bar
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg ci -m "change branch name"
Brendan Cully
Add test for branch shadowing
r4203 echo % branch shadowing
Matt Mackall
Move branch read/write to dirstate where it belongs
r4179 hg branch default
Matt Mackall
Merge with -stable, fix small test failure
r4209 hg branch -f default
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg ci -m "clear branch name"
Matt Mackall
Add some basic branch name tests
r3420
Brendan Cully
Branch heads should not include "heads" that are ancestors of other heads....
r8954 echo % there should be only one default branch head
hg heads .
Matt Mackall
Add some basic branch name tests
r3420 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
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg ci -m "modify a branch"
Matt Mackall
Add some basic branch name tests
r3420
Dirkjan Ochtman
merge: only in-branch merges can be implicit
r6723 hg merge default
Matt Mackall
add branch and branches commands
r3502 hg branch
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg ci -m "merge"
Matt Mackall
Add some basic branch name tests
r3420 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
Alexis S. L. Carvalho
tests: hide the name of the branch cache file
r6160 cp $branchcache .hg/bc-invalid
Alexis S. L. Carvalho
small fixes for test-newbranch...
r3760 hg log -r foo
Alexis S. L. Carvalho
tests: hide the name of the branch cache file
r6160 cp .hg/bc-invalid $branchcache
Alexis S. L. Carvalho
Ignore all errors while parsing the branch cache.
r3761 hg --debug log -r foo
Alexis S. L. Carvalho
tests: hide the name of the branch cache file
r6160 rm $branchcache
echo corrupted > $branchcache
Alexis S. L. Carvalho
Ignore all errors while parsing the branch cache.
r3761 hg log -qr foo
Alexis S. L. Carvalho
tests: hide the name of the branch cache file
r6160 cat $branchcache
Brendan Cully
Test update to branch tip
r4175
Alexis S. L. Carvalho
update the branch cache at the end of addchangegroup...
r5988 echo % push should update the branch cache
hg init ../target
echo % pushing just rev 0
hg push -qr 0 ../target
Alexis S. L. Carvalho
tests: hide the name of the branch cache file
r6160 cat ../target/$branchcache
Alexis S. L. Carvalho
update the branch cache at the end of addchangegroup...
r5988 echo % pushing everything
hg push -qf ../target
Alexis S. L. Carvalho
tests: hide the name of the branch cache file
r6160 cat ../target/$branchcache
Alexis S. L. Carvalho
update the branch cache at the end of addchangegroup...
r5988
Brendan Cully
Test update to branch tip
r4175 echo % update with no arguments: tipmost revision of the current branch
hg up -q -C 0
hg up -q
hg id
hg up -q 1
hg up -q
hg id
Alexis S. L. Carvalho
avoid a traceback with hg branch newbranch; hg up
r4231 hg branch foobar
hg up
Brendan Cully
Add fast-forward branch merging
r4410 echo % fastforward merge
hg branch ff
echo ff > ff
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg ci -Am'fast forward'
Brendan Cully
Add fast-forward branch merging
r4410 hg up foo
hg merge ff
hg branch
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg commit -m'Merge ff into foo'
Brendan Cully
Add fast-forward branch merging
r4410 hg parents
hg manifest
Dirkjan Ochtman
merge: only in-branch merges can be implicit
r6723 echo % test merging, add 3 default heads and one test head
cd ..
hg init merges
cd merges
echo a > a
hg ci -Ama
echo b > b
hg ci -Amb
hg up 0
echo c > c
hg ci -Amc
hg up 0
echo d > d
hg ci -Amd
hg up 0
hg branch test
echo e >> e
hg ci -Ame
hg log
echo % implicit merge with test branch as parent
hg merge
hg up -C default
echo % implicit merge with default branch as parent
hg merge
echo % 3 branch heads, explicit merge required
hg merge 2
hg ci -m merge
echo % 2 branch heads, implicit merge works
hg merge