1
0
mirror of https://github.com/balkian/balkian.github.com.git synced 2024-09-21 16:11:41 +00:00
balkian.github.com/content/post/2013-08-22-Remove-git-files-with-globbing.md

14 lines
219 B
Markdown
Raw Normal View History

2019-01-10 19:26:53 +00:00
---
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'
```