tests/test-issue1089.t
author Bryan O'Sullivan <bryano@fb.com>
Sat, 09 Feb 2013 21:24:24 +0000
changeset 18611 18c2184c27dc
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
merge: rename p1 to wctx in manifestmerge This is always a workingctx, and this name is more in line with other functions in this module.

http://mercurial.selenic.com/bts/issue1089

  $ hg init
  $ mkdir a
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b (glob)
  $ hg ci -m m a

  $ mkdir a b
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b (glob)
  $ cd b

Relative delete:

  $ hg ci -m m ../a

  $ cd ..