From 0bf7233294f7ebfdde12ae78deda24d84648055e Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Tue, 19 May 2020 14:06:16 +0200 Subject: [PATCH] Add .gitignore Contains common files created e.g. by IDEs (build folder) and by pip (/scorep.egg-info) This avoids accidentally committing build artifacts and leads to less polluted `git status` output --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d511274 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.ccls-cache +BUILD +build +/scorep.egg-info