tests/test-issue1089.t
author Boris Feld <boris.feld@octobus.net>
Fri, 27 Oct 2017 18:19:07 +0200
branchstable
changeset 34932 fd78276948b4
parent 26420 2fc86d92c4a9
child 35393 4441705b7111
permissions -rw-r--r--
internal-doc: document the config register mechanism This explains the various usage and feature of the config register introduced in Mercurial 4.3 and 4.4.

https://bz.mercurial-scm.org/1089

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