忽略 TortoiseHG 中的符号链接

发布于 2024-11-26 21:43:18 字数 93 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

格子衫的從容 2024-12-03 21:43:18

如果您的工作文件夹中有未跟踪的内容,并且希望将其保持为未跟踪状态,通常有以下三种方法可以做到这一点:

  1. 切勿发出任何“请找出需要为我添加和删除的内容”命令 (hg addremovehg commit ... --addremove 就是这样的示例)
  2. 每次发出此类命令时,具体列出您希望避免添加的文件
  3. 将它们列在您的.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:

  1. Never issue any of the "please figure out what needs to be added and removed for me" commands (hg addremove and hg commit ... --addremove are examples of this)
  2. Specifically list the files that you want to avoid being added, every time you issue such a command
  3. List them in your .hgignore file

If 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文