git 未跟踪的文件 - 如何忽略

发布于 11-14 17:25 字数 138 浏览 2 评论 0原文

当我运行 git status 时,我看到“Untracked files”部分有很多文件(有些带有“.”扩展名。)

我认为我不需要做任何事情,但看起来不太好每当我运行 git status 时就可以看到这些文件。有什么办法可以不看到这些文件吗?

When I run git status, I see the "Untracked files" section has many files (some with a "." extension.)

I don't think I have to do anything, but it doesnt look good to see these files whenever I run git status. Is there any way to not to see these files?

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

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

发布评论

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

评论(5

帅的被狗咬2024-11-21 17:25:27

“你的”文件、其他人看不到的文件,写在 .git/info/exclude 中。

对于其他人看到的文件,将它们写在项目顶部目录的 .gitignore 中,然后添加并提交 .gitignore 文件。

例如,您的 .gitignore 可能如下所示:

*.o
.*.sw[op]
*~

Files that are "yours", files that no one else sees, write in .git/info/exclude.

For files that everyone else sees, write them down in .gitignore at the project top directory and then add and commit the .gitignore file.

For example, your .gitignore might look like so:

*.o
.*.sw[op]
*~
何时共饮酒2024-11-21 17:25:27

您需要创建一个或多个 .gitignore 文件。它们可以存储在 git 本身中,或者只是保存在本地。

You need to create one or several .gitignore files. They can be stored in git itself, or just kept local.

音盲2024-11-21 17:25:27

您可以通过在文件 .git/info/exclude 中添加行 *.ext 来使 git 忽略与正则表达式匹配的所有文件(例如所有文件 *.ext)。

在下面添加了 Abe Voelker 的评论以改进答案:

请注意,此方法是您的存储库的本地方法。如果您曾经克隆它(例如与其他人共享),您的忽略设置将不会被拉入。

如果您需要共享忽略设置,您应该将其放在 .gitignore 文件中

You can make git ignore all files that match a regular expression (like all files *.ext) by adding the line *.ext in file .git/info/exclude.

Added Abe Voelker's comment bellow to improve the answer:

Note that this approach is local to your repository. If you ever clone it (e.g. share it with others), your ignore settings will not be pulled in.

If you need to share the ignore settings, you should put it in .gitignore files

み格子的夏天2024-11-21 17:25:27

要忽略,请使用 .gitignore,正如 Sam Hocevar 所说。

要删除,您可能需要执行 git clean,这将清理 git 未跟踪的所有文件。如果您有未跟踪的目录,您可能需要使用 -f-d 开关。

小心 git clean,它会删除你还没有添加到 git 的东西!

To ignore, use .gitignore, as Sam Hocevar said.

To delete, you'll probably want to do a git clean, which will clean up any files that aren't tracked by git. You might need to use the -f and -d switches if you've got directories which aren't tracked.

Be careful with git clean, it will delete things you haven't added to git yet!

遗心遗梦遗幸福2024-11-21 17:25:27

如果你想一直在全球范围内这样做

git config status.showuntrackedfiles no

If you want to do this globally all the time do

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