-
Notifications
You must be signed in to change notification settings - Fork 12
/
.gitignore
40 lines (33 loc) · 1.41 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
#*******************************************************************************
#.gitignore
#*******************************************************************************
#Purpose:
#The git program is informed here to ignore the following files while performing
#its distributed revision control and source code management.
#Author:
#Cedric H. David, 2015-2023
#*******************************************************************************
#List of files that git will ignore
#*******************************************************************************
#-------------------------------------------------------------------------------
#The input and output files stored in the sub-directories of input/ and output/
#-------------------------------------------------------------------------------
input/
output/
#-------------------------------------------------------------------------------
#The files potentially added to the tst/ directory, except for some key files
#-------------------------------------------------------------------------------
tst/*
!tst/tst_cmp_csv.py
!tst/tst_cmp_n1d.py
!tst/tst_cmp_n3d.py
!tst/tst_cmp_ncf.py
!tst/tst_cmp_shp.py
!tst/tst_chk_srt.py
!tst/tst_chk_ncf_fil.py
!tst/tst_chk_ncf_neg.py
!tst/tst_prf_ncf.py
!tst/tst_pub*
#*******************************************************************************
#End
#*******************************************************************************