Skip to content

Commit c0fcdcc

Browse files
authored
Allow .f90 files in kpp folder (wrf-model#1111)
TYPE: bug fix KEYWORDS: .gitignore, kpp, f90 DESCRIPTION OF CHANGES: Problem: The *.f90 files are part of .gitignore. This is not entirely correct. There are instances where the *.f90 files should be tracked by git. Solution: Exclude the *.f90 files under the kpp directory from this overly broad identification of files. There are other directories where this fix could also be applied (such as for DA). ISSUE: Fixes wrf-model#1105 LIST OF MODIFIED FILES: M .gitignore TESTS CONDUCTED: Compile and run WRF-Chem successfully
1 parent ae19db7 commit c0fcdcc

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
##############################################################################
12
# This is the top-level .gitignore file for the WRF model #
23
# #
34
# Filenames and wildcards added below will not be tracked by git in any #

chem/KPP/kpp/kpp-2.1/.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
##############################################################################
2+
# These files are EXCLUDED from not being tracked, so they are still tracked #
3+
# #
4+
# The leading "!" character is the NOT operator #
5+
# #
6+
# The "**" syntax means "this directory level and recursively all #
7+
# directories below this level" #
8+
##############################################################################
9+
!**/*.f90

0 commit comments

Comments
 (0)