-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
36 lines (29 loc) · 718 Bytes
/
.gitignore
File metadata and controls
36 lines (29 loc) · 718 Bytes
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
36
# Ignore files for push...
# Excluded files over than 100MB
# Large files in a GitHub free account has to be compress in 95MB files parts
# General exclusions
.idea/
.git/
.venv/
venv/
.venvPython310/
.venvPython311/
.gitignore/
**/*.nc
**/*.csv
**/*.docx
**/*.pptx
**/*.grib
__pycache__/
# Some samples
# http://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files
# ignore all .a files
# *.a
# but do track lib.a, even though you're ignoring .a files above
# !lib.a
# ignore all files in any directory named build
# build/
# ignore doc/notes.txt, but not doc/server/arch.txt
# doc/*.txt
# ignore all .pdf files in the doc/ directory and any of its subdirectories
# doc/**/*.pdf