###状況:
% git add .
githubにpushしたのになぜか一つのファイルだけ無視されている
% git add index.html
The following paths are ignored by one of your .gitignore files:
index.html
hint: Use -f if you really want to add them.
hint: Turn this message off by running
hint: "git config advice.addIgnoredFile false"
###解決:
-f for force
addの後にオプション ”-f” + ファイル名
% git add -f index.html