Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何调整我的电流.hgingore
.hgingore
syntax: glob oes images *.bak
这样它会忽略所有.bak文件吗?这不起作用,当我打开提交对话框时,它仍然显示一堆.php.bak文件。
.bak
.php.bak
*.bak当然不工作
*.bak
这可以防止新的 .bak 文件被添加到存储库中。如果它们已经在 repo 中,那么它们仍然会被跟踪。您可以hg forget将文件从 repo 中的未来修订版中删除,然后使用 .hgignore 中的 *.bak,您将不会被要求重新添加它们。
hg forget