From 212185a2a35ec802f0b4118597dea6f9d19fa668 Mon Sep 17 00:00:00 2001 From: Jack Taylor Date: Sat, 18 Mar 2017 17:58:44 +0900 Subject: Ignore vim swap files Add vim's .swp files to .gitignore. These files are created by vim whenever you open a file, so if you have a file open while running "git status", the .swp file will show up as untracked, which is kind of annoying. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 96374c4..7a429d0 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,9 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk +# Vim swap files +*.swp + # ========================= # Operating System Files # ========================= -- cgit v1.2.3