如何防止版本控制跟踪临时文件?
我正在使用 Mercurial 来版本化我的源代码,并且对它相当陌生,并且仍在了解它的功能。我通过添加整个文件夹和所有子目录将源代码添加到存储库中。
问题是现在我的临时文件显示为“已更改”。我意识到我根本不需要跟踪这些临时文件。有什么方法可以告诉 Mercurial 忘记具有特定扩展名(例如 .~temp)的所有文件吗?
I am using Mercurial to version my source code and am fairly new to it and still learning about it's abilities. I added my source to a repository by adding the entire folder and all subdirectories.
The problem is that now I have temporary files which show up as 'changed'. I realized I don't need to track these temporary files at all. Is there some way I can tell mercurial to forget all files with a specific extension such as .~temp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 hgignore 文件:http://www.selenic.com/mercurial/hgignore.5。 html
Use an hgignore file: http://www.selenic.com/mercurial/hgignore.5.html