forked from MPAS-Dev/MPAS-Model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
62 lines (46 loc) · 1.08 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Ignore Files in the MPAS Direcory
# All pre-processed Fortran files in MPAS specific directories
src/core_*/Registry_processed.xml
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
build_tables
# NetCDF Files
*.nc
# Restart timestamp file
restart_timestamp
# Graph files and partition files
*.info
*.info.part.*
# Error, Output, and Abort log files
*.out
*.err
*.abort
# 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_*
# Ignore all runtime config files
namelist.*
streams.*
stream_list.*
# Intermediate files that may be produced by Intel compilers
*.i
*.i90
src/core_*/inc