我有一个看起来像这样的树结构,我想在Git上提交。
├── A/
│ ├── lots of files
├── B/
│ ├── lots of files
├── samples
├── A/
│ ├── not so much files
├── B/
│ ├── not so much files
以下.gitignore
递归地忽略A/
和B/
,但是我只想忽略根级别A/
和B/
文件夹来为用户{ {1}}和samples/A/
samples/B/
# .gitignore
A/
B/
文件的正确语法是什么?谢谢。
答案 0 :(得分:3)
添加一个斜杠,以便仅在根级别上忽略文件夹。
# .gitignore
/A/
/B/