tests/test-issue1089.t
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 15 Dec 2022 02:54:06 +0100
changeset 50054 e2b89b6d4cdd
parent 49621 55c6ebd11cb9
permissions -rw-r--r--
dirstate: use `dirstate.change_files` to scope the change in `shelve` This is the way.

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

  $ hg init repo
  $ cd repo
  $ 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 ..