如何忽略HG中的某些文件夹?
我有我的项目文件夹 - Project.在项目中,我还有其他子项目 - SUBPROJECT1、SUBPROJECT2、SUBPROJECT3。
在每个子项目中我都有文件夹,其中有BIN和OBJ。但是,我希望忽略后者,这样当我提交时,我就不会对 BIN 和 OBJ 进行更改。我怎样才能做到这一点?
I have my project folder - Project. In Project I have other sub projects - SUBPROJECT1, SUBPROJECT2, SUBPROJECT3.
In each sub project I have folders, among which I have BIN and OBJ. However, I want the latter to be ignored such that when I commit I don`t have the changes made to BIN and OBJ. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要编辑
.hgignore
文件,并包含以下几行:您可能至少还需要这些其他内容:
还有其他更完整的
.hgignore
示例。代码> 文件。You'll need to edit your
.hgignore
file, and include the following lines:You probably want at least these other things as well:
There's other examples out there of more complete
.hgignore
files.使用
.hgignore
。With
.hgignore
.