1
16
从 git-commit 人页: -u[], --untracked-files[=] Show untracked files (Default: all). The mode parameter is optional, and is used to specify the handling of untracked files. The possible options are: · no - Show no untracked files · normal - Shows untracked files and directories · all - Also shows individual files in untracked directories. See git-config(1) for configuration variable used to change the default for when the option is not specified. |
2
37
如果你不
曾经
要将它们提交给您的回购,请使用
如果您只是不想在提交时看到它们,请设置git config变量
|
3
5
您可以临时使用git commit选项
如果您想要永久性的解决方案,请使用
例如,如果要忽略该文件
某些文件被全局忽略
|
4
3
将文件名或文件名模板(通配符)添加到.gitignore文件并将其添加到存储库:
例如,对于我的Go存储库,我有一个.gitignore文件,其中包含:
我应该压缩一下
|
5
1
有时不需要通知已更改的回购文件或需要添加到回购中的新文件。但是,将文件名添加到
在这些情况下,请使用以下解决方案之一:
|
6
-1
如果您使用的是Git扩展工具 在“提交”选项卡中,只需选择要忽略的文件,右键单击并将其添加到.gitignore |
charleslcso · 从开源克隆并推送到我的GitHub[重复] 1 年前 |
Itachi · 无法为python项目安装“DAWG”包 1 年前 |
Igor · git重置已删除目录上的头 2 年前 |
Robo · 撤消删除Git中被忽略的文件 2 年前 |
Ali EXE · 如何根据bat中命令的输出设置变量? 2 年前 |
ShortArrow · 如何使用git管理链接源文件? 2 年前 |
Siggi · 使用git移动文件时丢失历史记录 2 年前 |