git 未跟踪的文件 - 如何忽略
当我运行 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 技术交流群。
发布评论
评论(5)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
“你的”文件、其他人看不到的文件,写在 .git/info/exclude 中。
对于其他人看到的文件,将它们写在项目顶部目录的 .gitignore 中,然后添加并提交 .gitignore 文件。
例如,您的 .gitignore 可能如下所示:
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: