From a901a3edf256c1a1441433e77feac919fb8e5ed6 Mon Sep 17 00:00:00 2001 From: Mike Schuchardt Date: Tue, 22 May 2018 16:23:37 -0600 Subject: [PATCH] Add .gitignore with python cache files Prevents Vulkan-Headers from complaining about untracked files when used as a submodule --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4e1519 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# Python cache +__pycache__ +*.pyc + -- 2.7.4