Mercurial > hg-stable
view tests/test-diff-color @ 10251:a19d2993385d stable
subrepo: fix merging of already merged subrepos (issue1986)
This fixes a bug seen when merging a main repo which contains a subrepo when
both repos have been merged before. Each repo (main and sub) has two
branches, both of which have been merged before.
In a subrepo, if the revision to merge to is an ancestor of the current rev,
then the merge should be a noop.
Test provided by Steve Losh.
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Fri, 15 Jan 2010 21:08:04 +0100 |
parents | d29bd00bbc50 |
children |
line wrap: on
line source
#!/bin/sh echo "[extensions]" >> $HGRCPATH echo "color=" >> $HGRCPATH hg init repo cd repo cat > a <<EOF c c a a b a a c c EOF hg ci -Am adda cat > a <<EOF c c a a dd a a c c EOF echo '% default context' hg diff --nodates --color=always echo '% --unified=2' hg diff --nodates -U 2 --color=always echo '% diffstat' hg diff --stat --color=always echo "record=" >> $HGRCPATH echo "[ui]" >> $HGRCPATH echo "interactive=true" >> $HGRCPATH echo "[diff]" >> $HGRCPATH echo "git=True" >> $HGRCPATH echo % record chmod 0755 a hg record --color=always -m moda a <<EOF y y EOF echo echo "[extensions]" >> $HGRCPATH echo "mq=" >> $HGRCPATH hg rollback echo % qrecord hg qrecord --color=always -m moda patch <<EOF y y EOF echo