小编典典

尽管 .gitignore 文件强制添加

all

尽管有文件,有没有办法强制git添加.gitignore文件?


阅读 159

收藏
2022-03-11

共1个答案

小编典典

man git-add

   -f, --force
       Allow adding otherwise ignored files.

所以运行这个

git add --force my/ignore/file.foo
2022-03-11