view tests/test-revert-unknown.t @ 12132:8a0e5b0c0ba9

debugindex(dot): try to access filelogs through repo, if possible If a repository is accesible, first treat the filename as a working copy file and try to open its filelog. Fallback to opening the file directly as a revlog, as before.
author Sune Foldager <sune.foldager@edlund.dk>
date Wed, 01 Sep 2010 15:03:45 +0200
parents 327dee7f7327
children 4c94b6d0fb1c
line wrap: on
line source

  $ hg init
  $ touch unknown

  $ touch a
  $ hg add a
  $ hg ci -m "1" -d "1000000 0"

  $ touch b
  $ hg add b
  $ hg ci -m "2" -d "1000000 0"

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