add file ignore gitignore code example
Example 1: Force add despite the .gitignore file
git add --force my/ignore/file.foo
Example 2: how to put files into gitignore
$ echo debug.log >> .gitignore
$ git rm --cached debug.log
rm 'debug.log'
$ git commit -m "Start ignoring debug.log"