git: ignore more build directories

Build directories commonly have compiler in their names.
In order to filter build directories not starting with "build-"
(common with make), patterns for gcc and clang are added to .gitignore.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
Thomas Monjalon 2019-09-14 17:05:09 +02:00
parent 505a2b0c64
commit 808b3fce7e

3
.gitignore vendored
View File

@ -27,3 +27,6 @@ TAGS
# ignore default build directory, and directories from test-meson-builds.sh
build
build-*
# ignore other build directory patterns
*-gcc*
*-clang*