From 47c270d92e8df586185ef0b892b56c5529d30929 Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Mon, 30 May 2022 13:06:11 -0700 Subject: [PATCH] gitignore __* - for local use only I know it is useful to keep some local stuff and NOT see it in `git status`, so let's agree that anyuthing that starts with "__" will be ignored. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 2217abf5cca..63ce72ea78a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,9 @@ # OSX trash .DS_Store +# Developers can store local stuff in dirs named __something +__* + # Eclipse files .classpath .project