1
0
mirror of https://github.com/balkian/balkian.github.com.git synced 2025-08-24 04:32:20 +00:00

Move to Hugo

This commit is contained in:
J. Fernando Sánchez
2019-01-10 20:26:53 +01:00
parent dbe35d2dde
commit 7c3fb50312
219 changed files with 19924 additions and 18981 deletions

View File

@@ -0,0 +1,13 @@
---
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'
```