Mercurial > hg
view tests/test-bookmarks-rebase @ 11818:b1ae33b813cb stable
hg.clone: do not ignore branch argument when source is a repo object
This is a revert of 4a70178f9bde. The "bug" mentioned in this changeset is unclear:
hopefully using a test to cover this usage should prevent any bugs.
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Fri, 02 Jul 2010 15:12:50 +0900 |
parents | 2313dc4d9817 |
children |
line wrap: on
line source
#!/bin/sh . $TESTDIR/helpers.sh echo "[extensions]" >> $HGRCPATH echo "rebase=" >> $HGRCPATH echo "bookmarks=" >> $HGRCPATH echo % initialize repository hg init echo 'a' > a hg ci -A -m "0" echo 'b' > b hg ci -A -m "1" hg up 0 echo 'c' > c hg ci -A -m "2" echo 'd' > d hg ci -A -m "3" hg bookmark -r 1 one hg bookmark -r 3 two echo % bookmark list hg bookmark echo % rebase hg rebase -s two -d one 2>&1 | cleanrebase hg log