状況
$ 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
。これは何を意味するのでしょうか?