hgbook

view en/examples/bisect.commits.out @ 166:08a4467f4891

Try to get the bisect extension to behave.
author Bryan O'Sullivan <bos@serpentine.com>
date Mon Mar 26 22:59:43 2007 -0700 (2007-03-26)
parents 4aecfa5c3ab0
children f8b5b782e150
line source
1 $ \textbf{buggy_change=37}
2 $ \textbf{for (( i = 0; i < 50; i++ )); do}
3 > \textbf{ if [[ $i = $buggy_change ]]; then}
4 > \textbf{ echo 'i have a gub' > myfile$i}
5 > \textbf{ hg commit -q -A -m 'buggy changeset'}
6 > \textbf{ else}
7 > \textbf{ echo 'nothing to see here, move along' > myfile$i}
8 > \textbf{ hg commit -q -A -m 'normal changeset'}
9 > \textbf{ fi}
10 > \textbf{done}