tests/test-issue1089.t
author Augie Fackler <augie@google.com>
Tue, 13 Feb 2018 08:43:14 -0500
changeset 36189 d541042f32f6
parent 35400 4441705b7111
child 49585 55c6ebd11cb9
permissions -rw-r--r--
progress: determine padding width portably Differential Revision: https://phab.mercurial-scm.org/D2225

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
  $ 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
  $ cd b

Relative delete:

  $ hg ci -m m ../a

  $ cd ..