I'm trying to include Makefile in my git repo, but I get this message:
$ 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
In my repo .gitignore file I have:
*.pdf
In my ~/.gitignore_global
#-*-shell-script-*-
# Python
*.pyc
# Latex
*.aux
*.bbl
*.blg
*.log
build
# Mac
*~
.DS_Store
My .gitignore_global is in git config:
$ git config -l
core.excludesfile=/Users/marcos/.gitignore_global
My repo is not inside another repo. Why is Git ignoring my Makefile?
.git/info/exclude? – dusan Nov 23 '12 at 13:30