tests/test-revert-unknown.t
author Boris Feld <boris.feld@octobus.net>
Sat, 15 Jul 2017 23:30:25 +0200
changeset 33537 709dde1c5dd5
parent 12156 4c94b6d0fb1c
child 44724 5c2a4f37eace
permissions -rw-r--r--
cachevfs: migration the tags fnode cache to 'cachevfs' This will help sharing the cache between shares.

  $ hg init
  $ touch unknown

  $ touch a
  $ hg add a
  $ hg ci -m "1"

  $ touch b
  $ hg add b
  $ hg ci -m "2"

Should show unknown

  $ hg status
  ? unknown
  $ hg revert -r 0 --all
  removing b

Should show unknown and b removed

  $ hg status
  R b
  ? unknown

Should show a and unknown

  $ ls
  a
  unknown