test-rebase-pull
61 lines
| 1.1 KiB
| text/plain
|
TextLexer
/ tests / test-rebase-pull
Stefano Tortarolo
|
r6906 | #!/bin/sh | ||
echo "[extensions]" >> $HGRCPATH | ||||
echo "graphlog=" >> $HGRCPATH | ||||
echo "rebase=" >> $HGRCPATH | ||||
BASE=`pwd` | ||||
Brendan Cully
|
r6910 | addcommit () { | ||
Stefano Tortarolo
|
r6906 | echo $1 > $1 | ||
hg add $1 | ||||
hg commit -d "${2} 0" -u test -m $1 | ||||
} | ||||
Brendan Cully
|
r6910 | |||
commit () { | ||||
Stefano Tortarolo
|
r6906 | hg commit -d "${2} 0" -u test -m $1 | ||
} | ||||
cd $BASE | ||||
rm -rf a | ||||
hg init a | ||||
cd a | ||||
addcommit "C1" 0 | ||||
addcommit "C2" 1 | ||||
cd .. | ||||
hg clone a b | ||||
Stefano Tortarolo
|
r7786 | # This is needed to test pull --rebase | ||
hg clone a c | ||||
Stefano Tortarolo
|
r6906 | cd b | ||
addcommit "L1" 2 | ||||
cd ../a | ||||
addcommit "R1" 3 | ||||
cd ../b | ||||
echo | ||||
echo "% Now b has one revision to be pulled from a" | ||||
hg pull --rebase 2>&1 | sed -e 's/\(saving bundle to \).*/\1/' \ | ||||
-e 's/\(pulling from \).*/\1/' | ||||
hg glog --template '{rev}:{desc}\n' | ||||
echo | ||||
echo "% Re-run pull --rebase" | ||||
hg pull --rebase 2>&1 | sed 's/\(pulling from \).*/\1/' | ||||
echo | ||||
Stefano Tortarolo
|
r7786 | echo "% Invoke pull --rebase and nothing to rebase" | ||
cd ../c | ||||
hg pull --rebase 2>&1 | sed 's/\(pulling from \).*/\1/' | ||||
hg glog --template '{rev}\n' -l 1 | ||||
echo | ||||
echo "% pull --rebase doesn't update if nothing has been pulled" | ||||
hg up 1 | ||||
hg pull --rebase 2>&1 | sed 's/\(pulling from \).*/\1/' | ||||
hg glog --template '{rev}\n' -l 1 | ||||
Stefano Tortarolo
|
r6906 | |||
exit 0 | ||||