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.
This commit is contained in:
Tim Hockin 2022-05-30 13:06:11 -07:00
parent f3654386ab
commit 47c270d92e

3
.gitignore vendored
View File

@ -4,6 +4,9 @@
# OSX trash
.DS_Store
# Developers can store local stuff in dirs named __something
__*
# Eclipse files
.classpath
.project