Show More
@@ -691,3 +691,21 b' the working directory (issue6483)' | |||
|
691 | 691 | $ hg add a.py b.rs |
|
692 | 692 | $ hg st -aI "*.py" |
|
693 | 693 | A a.py |
|
694 | ||
|
695 | Check using include flag while listing ignored composes correctly (issue6514) | |
|
696 | ||
|
697 | $ cd .. | |
|
698 | $ hg init issue6514 | |
|
699 | $ cd issue6514 | |
|
700 | $ mkdir ignored-folder | |
|
701 | $ touch A.hs B.hs C.hs ignored-folder/other.txt ignored-folder/ctest.hs | |
|
702 | $ cat >.hgignore <<EOF | |
|
703 | > A.hs | |
|
704 | > B.hs | |
|
705 | > ignored-folder/ | |
|
706 | > EOF | |
|
707 | $ hg st -i -I 're:.*\.hs$' | |
|
708 | I A.hs | |
|
709 | I B.hs | |
|
710 | I ignored-folder/ctest.hs | |
|
711 | I ignored-folder/other.txt (known-bad-output rust !) |
General Comments 0
You need to be logged in to leave comments.
Login now