情况
$ cat .hgignore
.hgignore
$ hg status
M file1
M file2
M src/project.xml
我不想追踪project.xml
所以我跑
echo "project.xml" >> .hgignore
结果是
$ cat .hgignore
.hgignore
project.xml
$ hg status
M .hgignore
M file1
M file2
M src/project.xml
所以.hgignore
即使它不应该被跟踪并且project.xml
. 这是什么意思?