-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy path.gitignore
35 lines (30 loc) · 1.51 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copied from this project: eRCaGuy_dotfiles: https://github.com/ElectricRCAircraftGuy/eRCaGuy_dotfiles
#
# Gitignore File Formatting Notes:
# - add a / *after* a name to indicate a folder, and leave it off to indicate a file; ex: `folder/`, `file`
# - Add a / *before* a name to indicate it is an absolute-style path starting at this repository's "root" directory, or in other words, the directory where the git repo's ".git" folder is located; ex: `/folder/`, `/file`
# - See: https://stackoverflow.com/questions/43555850/git-gitignore-to-ignore-only-folder-in-root-directory/43555863#43555863
# - Use asterisks (*) for wildcards; ex: `/mydir/*/*.cpp`
# - Add an exclamanation mark (!) *before* a path to indicate you do NOT want it ignored, even if it otherwise matches a path to ignore; ex:
# ```
# /ignored_dir/ # ignore this dir
# !/ignored_dir/special_file_to_include # EXCEPT for this file--DO include it!
# ```
/git_branch_hash_backups/
temp/
bin/
# Temporary LibreOffice Writer & Calc files
*.odt#
*.ods#
*.csv#
# Sublime Text workspace files
# - you don't need to back these up, as they are auto-generated from a project file and specific to a local machine
# - back up only the *.sublime-project files instead!
*.sublime-workspace
trash/
# See my comment, and this answer:
# https://stackoverflow.com/questions/16869024/what-is-pycache/48143622#comment134373559_48143622
__pycache__/
# Python Venv virtual environment
# - See: https://code.visualstudio.com/docs/python/python-tutorial
/.venv/