Adding a rule for private files in gitignore (#7535)

In daily work, we have some files, scripts which are not comitable yet useful when working.
Seeing them in git status is annoying. Let's support them in `.gitignore`

Co-authored-by: Alessio Treglia <alessio@tendermint.com>
This commit is contained in:
Robert Zaremba 2020-10-14 17:27:43 +02:00 committed by GitHub
parent f260ca4319
commit 23bfbe391b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
.gitignore vendored
View File

@ -9,6 +9,10 @@
.idea
*.pyc
# private files
private[.-]*
private
# Build
vendor
build