我正在尝试将 Makefile 包含在我的 git 存储库中,但我收到以下消息:
$ git add Makefile
The following paths are ignored by one of your .gitignore files:
Makefile
Use -f if you really want to add them.
fatal: no files added
在我的回购.gitignore
文件中,我有:
*.pdf
在我的 ~/.gitignore_global
#-*-shell-script-*-
# Python
*.pyc
# Latex
*.aux
*.bbl
*.blg
*.log
build
# Mac
*~
.DS_Store
我的 .gitignore_global 在 git config 中:
$ git config -l
core.excludesfile=/Users/marcos/.gitignore_global
我的回购不在另一个回购中。为什么 Git 忽略了我的 Makefile?