tests/test-issue1089.t
author Augie Fackler <augie@google.com>
Tue, 13 Feb 2018 18:47:55 -0500
changeset 36209 f8f1973eaf8a
parent 35400 4441705b7111
child 49585 55c6ebd11cb9
permissions -rw-r--r--
tests: add bytes prefixes to test-histedit-fold.t's local extension # skip-blame b prefixes Differential Revision: https://phab.mercurial-scm.org/D2246

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