tests/test-issue1089.t
author Gregory Szorc <gregory.szorc@gmail.com>
Mon, 28 Nov 2016 20:46:59 -0800
changeset 30562 b3a9ef3d30e8
parent 26420 2fc86d92c4a9
child 35393 4441705b7111
permissions -rw-r--r--
protocol: declare transport protocol name We add an attribute to the HTTP and SSH protocol implementations identifying the transport so future patches can conditionally expose capabilities on a per-transport basis.

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