Remove git files with globbing

2013-08-22 git

A simple trick. If you want to remove all the '.swp' files from a git repository, just use:

1
git rm --cached '\*\*.swp'