tests/test-issue1089.t
author Matt Harbison <matt_harbison@yahoo.com>
Tue, 14 Aug 2012 22:38:25 -0400
branchstable
changeset 17411 a02e36568e88
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
largefiles: adjust localstore to handle batch statlfile requests (issue3583) This fixes a traceback when pushing to a local repo which started with 9e1616307c4c.

http://mercurial.selenic.com/bts/issue1089

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