为什么Git不添加文件夹?

问题描述 投票:1回答:1

我想在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 gitignore
1个回答
1
投票

使用git check-ignore -v app/static/icon找出答案。

© www.soinside.com 2019 - 2024. All rights reserved.