author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
Tue, 13 Mar 2007 15:02:33 -0300 | |
changeset 4176 | f9bbcebcacea |
parent 2990 | 61fcd9fac434 |
child 5735 | 9079081b8982 |
permissions | -rwxr-xr-x |
#!/bin/sh set -e echo "[extensions]" >> $HGRCPATH echo "hbisect=" >> $HGRCPATH echo % init hg init echo % committing changes count=0 echo > a while test $count -lt 32 ; do echo 'a' >> a test $count -eq 0 && hg add hg ci -m "msg $count" -d "$count 0" echo % committed changeset $count count=`expr $count + 1` done echo % log hg log echo % hg up -C hg up -C echo % bisect test hg bisect init hg bisect bad hg bisect good 1 hg bisect good hg bisect good hg bisect good hg bisect bad hg bisect good