From e912ca9603c5407eb2732f3620d07cf2ca60c80e Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 23 Aug 2017 20:38:36 +0100 Subject: Improving gitignore. --- .gitignore | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 9b5a28d9..36a26ca2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,9 @@ # general directories to ignore -bin/ -build/ -build_clang/ -build_gcc/ -build_debug/ -build_release/ -CMakeFiles/ -Testing/ +bin +build +build_* +CMakeFiles +Testing # extensions to ignore *.o @@ -17,7 +14,6 @@ Testing/ # general files to ignore CMakeCache.txt Makefile - -# specific directories to ignore -/debug_build/ -/G* +GPATH +GTAGS +GRTAGS -- cgit From 5403490b941f7c031bf1aafdb91b1098f69edbf2 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 24 Aug 2017 00:21:07 +0100 Subject: Running clang-format over everything. Edited formatting and ran it over all the files. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 36a26ca2..76595e59 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,10 @@ Testing *.a *.cmake +# emacs +*.# +*~ + # general files to ignore CMakeCache.txt Makefile -- cgit