为什么Git不添加文件夹?

时间:2019-02-15 15:54:35

标签: git gitignore

我要在回购中添加文件夹app/static/icon

当我制作git add app/static/icon时,Git返回:

The following paths are ignored by one of your .gitignore files:
app/static/icon
Use -f if you really want to add them.

我的.gitignore文件:

**/__pycache__/
**/*.pyc
.idea/

params.py

flask/

app/static/load/
db/

为什么忽略此文件夹?

1 个答案:

答案 0 :(得分:1)

使用git check-ignore -v app/static/icon进行查找。