Mercurial > hg
view tests/test-issue352 @ 4418:0532491f7476
MQ: tidy up if a qpush is interrupted.
This aborts the transaction, makes sure the dirtied dirstate isn't
written out, and cleans up the working directory.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue, 08 May 2007 12:16:02 -0700 |
parents | f4c9bb4ad7b1 |
children | 08d31e43592a |
line wrap: on
line source
#!/bin/bash # http://www.selenic.com/mercurial/bts/issue352 hg init foo cd foo A=`echo -e -n 'he\rllo'` echo foo > "hell o" echo foo > "$A" hg add hg ci -A -m m rm "$A" ls hg add # BUG ? we don't walk on filenames with '\n' (regexp related) ? hg debugwalk hg ci -A -m m exit 0