如何才能永久忘记使用 Mercurial 进行版本控制的 T4 生成文件?
如何才能永久忘记使用 Mercurial 进行版本控制的 T4 生成文件?
Visual Studio (VisualHG) 似乎自动将它们添加到版本控制中。
How can I permanently forget T4 generated files from being version control using Mercurial?
It seems that Visual Studio (VisualHG) automatically adding them to version control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
hgforget
,然后将生成的文件添加到.hgignore
文件中,这样它们就不会再次添加。Use
hg forget
, and then add the generated files to your.hgignore
file so they won't get added again.有一个
hg忘记
命令将从版本控制中删除文件,但不会从工作副本中删除它们。当其他人拉取变更集并更新时,这些文件将从中从其他人的工作副本中删除。您可能还想将这些文件添加到您的
.hgignore
文件中,以便您知道它们保持未版本化。There is a
hg forget
command which will remove files from version control, but without deleting them from your working copy. The files will be deleted from everybody else's working copies when they pull the changeset and update.You'll probably also want to add the files to your
.hgignore
file so that you know they stay unversioned.