forked from MPAS-Dev/MPAS-Model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
46 lines (34 loc) · 863 Bytes
/
.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
36
37
38
39
40
41
42
43
44
45
46
# Ignore Files in the MPAS Direcory
# All pre-processed Fortran files in MPAS specific directories
src/core_*/*.f90
src/framework/*.f90
src/driver/*.f90
src/operators/*.f90
# All object files
*.o
# All mod files
*.mod
# All libraries
*.a
# Executables
*_model
src/registry/parse
# NetCDF Files
*.nc
# Graph files and partition files
*.info
*.info.part.*
# Error and Output log files
*.out
*.err
# Text files (For statistical output from ocean model)
*.txt
# Directories with individual .gitignore files are:
# src/external (Externals might have a different compilation method)
# src/inc (Include files don't exist until build time. But directory needs to exist.)
# src/core_atmosphere (Directory to include object files from physics in the atmosphere core library.)
# Ignore WRF Physics Files
*.TBL
*DATA*
# Ignore MPAS core build files.
.mpas_core_*