From 0cc0ab879df185c9894e69ceef649563df7c596e Mon Sep 17 00:00:00 2001 From: Valerii Ponomarov Date: Thu, 15 Feb 2018 10:48:02 +0200 Subject: Add .gitignore file With the most popular temporary files that should not go to the source code. Change-Id: Ib5a28fdfa7f163f937b0f128815448cb5c5acce1 --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..3dd732a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Virtual environment related stuff +.tox/* + +# Log files +*.log + +# Linux swap files range from .saa to .swp +*.s[a-w][a-p] + +# Python bytecode files +*.pyc +*.pyo + +# Development environment files +.project +.pydevproject -- cgit