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...

14 lines
219 B
Markdown

6 years ago
---
title: Remove git files with globbing
date: 2013-08-22 23:14:00
tags:
- git
---
A simple trick. If you want to remove all the '.swp' files from a git
repository, just use:
```bash
git rm --cached '**.swp'
```