忽略 TortoiseHG 中的符号链接
我正在使用 TortoiseHG 将代码提交到存储库中。系统的一部分是符号链接,这些链接会引发错误并且不允许提交代码。这些目录不需要提交,那么有没有办法我可以忽略这些目录?
I'm using TortoiseHG to commit code into a repository. Part of the system is symbolic links and these are throwing errors and are not allowing code to be committed. These directories do not need to be committed, so is there a way I can just ignore the directories?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的工作文件夹中有未跟踪的内容,并且希望将其保持为未跟踪状态,通常有以下三种方法可以做到这一点:
hg addremove
和hg commit ... --addremove
就是这样的示例).hgignore
文件如果您想使用选项 3,那么您应该查阅 .hgignore 的文档。一般来说,您可以只列出该文件中的文件名称,它只是一个普通的文本文件,但有一些关于语法的选项,所以最好只检查文档。
If you have untracked content in your working folder, and want to keep them as untracked, there's generally three ways to do that:
hg addremove
andhg commit ... --addremove
are examples of this).hgignore
fileIf you want to go with option 3, then you should consult the documentation for .hgignore. In general, you can just list the names of the files in that file, it's just a normal text file, but there's a few options regarding syntax for that, so best to just check the documentation.