##// END OF EJS Templates
rust-status: highlight a bug in Rust-augmented status...
Raphaël Gomès -
r48101:c365850b stable
parent child Browse files
Show More
@@ -691,3 +691,21 b' the working directory (issue6483)'
691 $ hg add a.py b.rs
691 $ hg add a.py b.rs
692 $ hg st -aI "*.py"
692 $ hg st -aI "*.py"
693 A a.py
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