Mercurial > hg
view tests/test-identify @ 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 | 55bd03e2e13c |
children |
line wrap: on
line source
#!/bin/sh "$TESTDIR/hghave" no-outer-repo || exit 80 echo % no repo hg id echo % create repo hg init test cd test echo a > a hg ci -Ama echo % basic id usage hg id hg id --debug hg id -q hg id -v echo % with options hg id -r. hg id -n hg id -t hg id -b hg id -i hg id -n -t -b -i echo % with modifications echo b > a hg id -n -t -b -i echo % other local repo cd .. hg -R test id hg id test echo % with remote http repo cd test hg serve -p $HGPORT1 -d --pid-file=hg.pid cat hg.pid >> $DAEMON_PIDS hg id http://localhost:$HGPORT1/ echo % remote with tags? hg id -t http://localhost:$HGPORT1/ true # ends with util.Abort -> returns 255