From 89e7bbe292afd3912d1f0b2402cc506878bad869 Mon Sep 17 00:00:00 2001 From: "Yuhui.Zheng" <10982575+yuhui-zheng@users.noreply.github.com> Date: Tue, 18 Feb 2020 17:47:55 -0800 Subject: [PATCH] A preliminary .gitignore file, to prevent us checking in files unnecessary. (#18) https://github.com/github/gitignore. --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..daddd59495 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +# Ignore MacOS file system related. +**/*.DS_Store* + +# Ignore build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio cache/options directory +.vs/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc \ No newline at end of file