diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2010-07-25 19:52:39 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-18 12:42:18 -0700 |
commit | 3f5e042b9cfdbb972a3ddcabe3b13e5350231751 (patch) | |
tree | ddafe6779c05a9911ee96d4e1c7a1983b6893b3c /.gitignore | |
parent | t/README: Add SMOKE_{COMMENT,TAGS}= to smoke_report target (diff) | |
download | tgif-3f5e042b9cfdbb972a3ddcabe3b13e5350231751.tar.xz |
gitignore: Ignore files generated by "make coverage"
The "make coverage" support added by Thomas Rast in 901c369af5 didn't
contain a corresponding patch to patch .gitignore.
Change gitignore to ignore the *.gcda, *.gcno and *.gcov files
generated by GCC and our coverage invocations.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 14e2b6bde9..57f79ef5a2 100644 --- a/.gitignore +++ b/.gitignore @@ -181,6 +181,10 @@ *.[aos] *.py[co] .depend/ +*.gcda +*.gcno +*.gcov +/coverage-untested-functions *+ /config.mak /autom4te.cache |