From e7252e217fe6d8f05dd50f6e125c33a1c6fff602 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Thu, 29 May 2008 17:54:35 -0700 Subject: gitignore: add ignores for common emacs and vim temporary files vim saves temporary data in $FILENAME.swp. emacs saves backups in $FILENAME~. .gitignore now ignores all of these entries. Signed-off-by: David Aguilar --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index f6f25471..faca3a87 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ *.py[co] +*.swp +*~ /lib/GitPython.egg-info /build -- cgit v1.2.1