gitリポジトリにMakefileを含めようとしていますが、次のメッセージが表示されます。
$ 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はgitconfigにあります:
$ git config -l
core.excludesfile=/Users/marcos/.gitignore_global
私のリポジトリは別のリポジトリ内にありません。GitがMakefileを無視するのはなぜですか?