tests/test-issue1089.t
author Sean Farley <sean.michael.farley@gmail.com>
Wed, 14 Jan 2015 20:11:02 -0800
changeset 23875 e573dd08aeaf
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
namespaces: add colorname member to namespace object Previously, there was no way to change the color label used for 'hg log' output. This patch just adds the member to the object, a future patch will change 'hg log' to use this.

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