From 6f6ed17f9920bf513147c8f3218b331395017fc3 Mon Sep 17 00:00:00 2001 From: Lasse Schuirmann Date: Tue, 4 Aug 2015 13:08:26 +0200 Subject: [PATCH] gitignore: Add temporary editor files .idea stores settings for PyCharm, ~ files are temporary files e.g. used by gedit. .swp is used by vim. We don't want any of those to be accidentally committed in the repo. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 7effb2fc..0006e76c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +*~ +*.swp +.idea *.so docs/_build *.pyc -- 2.47.2