我确信这已经是SO的一些问题的重复,而且非常简单,但我无法理解。
假设这是我的文件夹结构
- Parent folder
- Folder1
- Folder2
- .git
现在我想在Folder2中添加所有文件,除了某些文件类型,例如.xls,这种类似的东西
git add 'C:\Parent folder\Folder2' <except .xls>
如果我想添加特定的文件类型,也请告诉我。
谢谢:)
答案 0 :(得分:1)
您可以将.gitignore文件放在所需的子目录中。它将递归地应用于该目录的所有子目录。
Github maintains .gitignore模板的集合。您可能会觉得使用起来很方便。
以下是相关问题:Correctly ignore all files recursively under a specific folder except for a specific file type
另一个你可能会觉得有用的:How to remove files that are listed in the .gitignore but still on the repository?