Mercurial > hg
view tests/test-remove @ 6032:b41f0d6a74fc
dirstate: don't walk ignored directories
With a pattern like '^directory$' in .hgignore, a "hg status directory"
would still walk "directory" and all its subdirs.
This is the first half of a fix for issue886.
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Fri, 08 Feb 2008 18:07:55 -0200 |
parents | a6436e9333db |
children | 8e3b651382f5 |
line wrap: on
line source
#!/bin/sh hg init a cd a echo a > foo hg rm foo hg add foo hg commit -m 1 -d "1000000 0" hg remove rm foo hg remove foo hg revert --all rm foo hg remove --after hg commit -m 2 -d "1000000 0" hg export --nodates 0 hg export --nodates 1 hg log -p -r 0 hg log -p -r 1 echo a > a hg add a hg rm a hg rm -f a echo b > b mkdir c echo d > c/d hg ci -A -m 3 -d "1000001 0" echo c >> b hg rm b hg rm -f b hg rm -A c/d hg st cat c/d hg revert c hg rm -A hg st hg rm -A c hg st rm c/d hg rm -A hg st cd .. hg clone a b