Mercurial > hg
view tests/test-issue619.t @ 13196:592998ba3466
record: clean up command table
The --force option to qnew has become a no-op, so qrecord doesn't need
to use it. This allows record's command table to be simplified; in the
process of doing so, this patch also cleans up the cmdtable visually.
author | Kevin Bullock <kbullock@ringworld.org> |
---|---|
date | Tue, 21 Dec 2010 15:27:58 -0600 |
parents | 9e7e24052745 |
children | 1792b8a9422b |
line wrap: on
line source
http://mercurial.selenic.com/bts/issue619 $ hg init $ echo a > a $ hg ci -Ama adding a $ echo b > b $ hg branch b marked working directory as branch b $ hg ci -Amb adding b $ hg co -C 0 0 files updated, 0 files merged, 1 files removed, 0 files unresolved Fast-forward: $ hg merge b 1 files updated, 0 files merged, 0 files removed, 0 files unresolved (branch merge, don't forget to commit) $ hg branch default $ hg parent --template '{rev}:{node|short} {branches}: {desc}\n' 1:06c2121185be b: b $ hg ci -Ammerge created new head Bogus fast-forward should fail: $ hg merge b abort: merging with a working directory ancestor has no effect [255]