Mercurial > hg
view tests/test-nested-repo @ 7226:b71a52f101dc
Make it possible to disable filtering for a pattern.
Rationale: Apparently there were no way to disable for example win32text extension locally.
RFC: Can it already be done another way?
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Tue, 14 Oct 2008 21:28:49 +0200 |
parents | c7e8fe11f34a |
children |
line wrap: on
line source
#!/bin/sh hg init a cd a hg init b echo x > b/x echo '# should print nothing' hg add b hg st echo '# should fail' hg st b/x hg add b/x echo '# should fail' hg add b b/x hg st echo '# should arguably print nothing' hg st b echo a > a hg ci -Ama a echo '# should fail' hg mv a b hg st