忽略文件夹,但不在Git上递归

时间:2019-02-06 12:46:27

标签: git

我有一个看起来像这样的树结构,我想在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/ 文件的正确语法是什么?谢谢。

1 个答案:

答案 0 :(得分:3)

添加一个斜杠,以便仅在根级别上忽略文件夹。

# .gitignore
/A/
/B/