我想在repo中添加文件夹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/
为什么忽略此文件夹?
使用git check-ignore -v app/static/icon
找出答案。