5
我想包括Makefile文件我的git倉庫,但我得到這個消息:爲什麼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是混帳配置:
$ git config -l
core.excludesfile=/Users/marcos/.gitignore_global
我的回購不在另一個回購。 爲什麼Git忽略我的Makefile?
文件'.git/info/exclude'怎麼辦? – dusan
謝謝@dusan。 Makefile文件中有一行。我刪除它。你能回答我的問題嗎? – msampaio