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/_posts/2013-08-22-Remove-git-files...

260 B

layout title date tags
post 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: {% highlight bash %} git rm --cached '**.swp' {% endhighlight %}