From 23bfbe391b04092536d8778aef9beac53db927b3 Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Wed, 14 Oct 2020 17:27:43 +0200 Subject: [PATCH] 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 --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 26659679aa..912ca3e3c9 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,10 @@ .idea *.pyc +# private files +private[.-]* +private + # Build vendor build