From 10231955d78631ecc72099c38b0c81d6ce8bcaa4 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 3 May 2021 10:32:18 -0700 Subject: [PATCH] git: ignore vim swap files For those developers who use vim, the traditional behaviour is to create swap files next to the file itself. These files should not be committed to the repository, add them to the ignore list. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index a0f5c2b9..d12ad32f 100644 --- a/.gitignore +++ b/.gitignore @@ -72,3 +72,6 @@ pnpm-lock.yaml ## Local History for Visual Studio Code .history/ + +# vim swap files +.*.sw?