|
From: Rhys K. <rhy...@so...> - 2017-10-02 01:10:06
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=7221d28cad21d44ebd73750b64229e9457034659 commit 7221d28cad21d44ebd73750b64229e9457034659 Author: Rhys Kidd <rhy...@gm...> Date: Sun Oct 1 20:57:04 2017 -0400 gitignore: Fix up false directory-level .gitignore settings So we never intended to ignore all changes from the top-level down in /include or /cachegrind. Instead allow the filetype-specific .gitignore patterns match to the contents of these two folders. Also, don't ignore changes to include/valgrind.h as it exists in the repository and should be tracked for any changes developers might make. Changes tested by running a git clean force and then full rebuild. No stray build artifacts were being tracked erroneously by git after these changes. Diff: --- .gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index ba06188..ec61217 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ /autom4te-*.cache /autom4te.cache /bin -/cachegrind /cachegrind.out.* /compile /config.guess @@ -19,7 +18,6 @@ /default.supp /depcomp /glibc-2.X.supp -/include /install-sh /lib /Makefile @@ -694,7 +692,6 @@ /include/Makefile.in /include/Makefile /include/tool.h -/include/valgrind.h /include/vgversion.h # /include/vki/ |