Show More
@@ -689,6 +689,29 b" Make sure .hg doesn't show up even as a " | |||||
689 | $ ln -s ../repo0/.hg |
|
689 | $ ln -s ../repo0/.hg | |
690 | $ hg status |
|
690 | $ hg status | |
691 |
|
691 | |||
|
692 | If the size hasn’t changed but mtime has, status needs to read the contents | |||
|
693 | of the file to check whether it has changed | |||
|
694 | ||||
|
695 | $ echo 1 > a | |||
|
696 | $ echo 1 > b | |||
|
697 | $ touch -t 200102030000 a b | |||
|
698 | $ hg commit -Aqm '#0' | |||
|
699 | $ echo 2 > a | |||
|
700 | $ touch -t 200102040000 a b | |||
|
701 | $ hg status | |||
|
702 | M a | |||
|
703 | ||||
|
704 | Asking specifically for the status of a deleted/removed file | |||
|
705 | ||||
|
706 | $ rm a | |||
|
707 | $ rm b | |||
|
708 | $ hg status a | |||
|
709 | ! a | |||
|
710 | $ hg rm a | |||
|
711 | $ hg rm b | |||
|
712 | $ hg status a | |||
|
713 | R a | |||
|
714 | ||||
692 | Check using include flag with pattern when status does not need to traverse |
|
715 | Check using include flag with pattern when status does not need to traverse | |
693 | the working directory (issue6483) |
|
716 | the working directory (issue6483) | |
694 |
|
717 |
General Comments 0
You need to be logged in to leave comments.
Login now