.gitignore: do not ignore top level binaries to make garbage file cleanup easier (#10457)

pull/10462/head
Miccah 2021-06-14 11:08:48 -05:00 committed by GitHub
parent 5aa7a983f1
commit dcd072a2b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

5
.gitignore vendored
View File

@ -1,5 +1,6 @@
# ignore all build binaries
*
# ignore sub-level build binaries and v binary
*/**/*
v
!*/
!*.*
*.exe