如何删除 Mercurial 中特定类型的文件?
我创建了 .hgignore 文件。但忘记了 .db 文件。因此,在 hg add
之后,该文件被添加以进行跟踪。我找到了 remove
命令,但无法弄清楚如何使用单个命令删除所有 .db
I created .hgignore file. But forgot about .db
files. So after hg add
this files were added to be tracked. I found the remove
command but can not figure out how to remove all the .db
with a single command
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我自己找到的:
Found it myself:
这有效:
hg忘记-I'**.db'
不要忘记
hg提交
该更改。This works:
hg forget -I '**.db'
Don't forget to
hg commit
that change.