-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.gitignore
35 lines (30 loc) · 1.57 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
# This file is copied and modified from eRCaGuy_dotfiles: https://github.com/ElectricRCAircraftGuy/eRCaGuy_dotfiles
# INSTRUCTIONS:
# Edit as desired, then copy this file to any git repository you desire.
# Ex: `cp -i .gitignore /path/to/my/git/repo/`
# 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;
# - example usage: `folder/`, `file`
# - Add a / *before* a name to indicate it is an absolute-style path starting at the "root" directory where this very
# .gitignore file is located; note this "root" directory is NOT necessarily this git repo's root directory where
# the ".git" folder is located, but rather, it is the directory where this .gitignore file is located;
# - example usage: `/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 exclamation mark (!) *before* a path to indicate you do NOT want it ignored, even if it otherwise matches
# a path to ignore; example:
# ```
# /ignored_dir/ # ignore this dir
# !/ignored_dir/special_file_to_include # EXCEPT for this file--DO include it!
# ```
/private/
/temp/
*.odt#
*.ods#
# Don't include temp files:
/pdf2searchablepdf_temp*/
# DO allow this one though to speed up development:
!/pdf2searchablepdf_temp_20191110-231200.594322352/
/git_branch_hash_backups/