You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
balkian.github.com/content/post/2013-08-22-Remove-git-files...

219 B

title date tags
Remove git files with globbing 2013-08-22 23:14:00
git

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

git rm --cached '**.swp'