Applies gitignore to all files (remove files which were previously committed already). ``` apply-gitignore = "!f() { set -ex; git rm -r --cached . >/dev/null; git add .; }; f" ``` What do you think?
Applies gitignore to all files (remove files which were previously committed already).
What do you think?