tests/test-issue1089.t
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 18 Sep 2020 15:37:03 -0700
changeset 45552 3d47b5c7fe8d
parent 35400 4441705b7111
child 49585 55c6ebd11cb9
permissions -rw-r--r--
rebase: remove redundant isinmemory argument from _origrebase() The argument is redundant with `rbst.inmemory`, which makes it unclear what to do if they were somehow different. Differential Revision: https://phab.mercurial-scm.org/D9070

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