如何在不使用.gitignore的情况下忽略Git中的文件
原文约800字/词,阅读约需3分钟。发表于: 。EN Sometimes you need to ignore files or folders in your Git project, but you don't want to add these rules to the shared .gitignore file. Git offers an elegant solution for this: the...
Git提供了一种在项目中忽略文件或文件夹的解决方案,而无需将规则添加到共享的.gitignore文件中。.git/info/exclude文件是特定于本地存储库的,其规则不与协作者共享。要使用它,定位到.git文件夹中的文件,创建或编辑它,以与.gitignore相同的格式添加排除规则,保存并关闭文件。使用.git/info/exclude的优点包括隐私、不干扰团队工作以及适用于本地配置。重要考虑因素包括使用相对路径和在忽略之前删除已跟踪的文件。.git/info/exclude文件是在Git存储库中管理本地排除的强大工具。