tests/test-issue1089.t
author Anton Shestakov <av6@dwimlabs.net>
Thu, 18 Jun 2015 16:14:10 +0800
changeset 25616 e0073dcec588
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
hgweb: link to revision by node hash in gitweb & monoblue This allows going from /rev/tip to /rev/<tip hash> with ease.

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