tests/test-issue619.t
author Kevin Bullock <kbullock@ringworld.org>
Mon, 14 Feb 2011 23:59:21 -0600
changeset 13407 354f304152ad
parent 13158 9e7e24052745
child 13550 1792b8a9422b
permissions -rw-r--r--
bookmarks: update help text since moving into core Clarifies the help text for the bookmarks command regarding the requirements for pushing or pulling bookmarks.

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]