From d866a9c0caa98fde192d0ac178e70922af8eae99 Mon Sep 17 00:00:00 2001 From: Vasyl Saienko Date: Thu, 26 Oct 2017 09:26:03 +0300 Subject: [PATCH] Add .gitignore file A gitignore file specifies intentionally untracked files that Git should ignore. Added temporary files like *.pyc, *.swp and others. Closes-Bug: #1727618 Change-Id: Iefa297c6992fdc930b69aefb99dadd4dddf974a7 --- .gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..de43d6a --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Compiled files +*.py[co] +*.a +*.o +*.so + +# Packages/installer info +*.egg +*.egg-info +dist +build +eggs +.eggs +parts +var +sdist +develop-eggs +.installed.cfg + +# Other +.*.swp