一次添加所有未跟踪的文件

发布于 2024-09-30 04:23:47 字数 144 浏览 3 评论 0原文

$ hg status

M ...
M ...
M ...
? ...
? ...
? ...

我需要添加所有未跟踪(?标记)的文件。是否可以? 我可以执行“hg add *”,但我会收到许多不需要的消息“文件已跟踪”。

$ hg status

M ...
M ...
M ...
? ...
? ...
? ...

I need to add all not tracked (? marked) files. Is it possible?
I can do "hg add *" but I will get many messages unwanted 'file already tracked'.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

︶ ̄淡然 2024-10-07 04:23:47

只需使用 hg add 而不使用 *

当没有给出文件时,它会添加所有未跟踪的文件,即在 hg status 的输出前面带有 ? 的所有文件。

由于 .hgignore 而被忽略的文件不会被没有文件名的 hg add 添加。

Just use hg add with no *.

When no files are given, it adds all untracked files, that is, all files with ? in front of the output of hg status.

Files that are ignored because of .hgignore will not be added by hg add without filenames.

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