tests/test-issue1089.t
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
Fri, 01 Aug 2014 01:13:53 +0900
branchstable
changeset 21962 8ea921bf1c47
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
i18n-ja: synchronized with 838025b15925

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 ..