-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.gitignore
59 lines (53 loc) · 1.13 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
# Ingnore all
*
# Unignore in this directory
!*.gitignore
!Doxyfile
# Unignore subdirectories
!/examples/
!/include/
!/include/private/
!/include/3rd_party/eiscor/
!/include/3rd_party/kiss_fft/
!/matlab/
!/src/
!/src/private/
!/src/3rd_party/eiscor/
!/src/3rd_party/kiss_fft/
!/test/
!/test/fnft__akns_fscatter/
!/test/fnft__fft_wrapper/
!/test/fnft__kdv_finvscatter/
!/test/fnft__kdv_scatter/
!/test/fnft_kdvv/
!/test/fnft__manakov_fscatter/
!/test/fnft__manakov_scatter/
!/test/fnft_manakovv/
!/test/fnft__misc/
!/test/fnft__nse_finvscatter/
!/test/fnft_nsep/
!/test/fnft__nse_scatter/
!/test/fnft_nsev/
!/test/fnft_nsev_inverse/
!/test/fnft__poly/
!/test/fnft_version_test/
!/test/fnft_version_test.c/
# Ignore MacOS hidden files in subdirectories
/**/*.DS_Store
# Ignore mex and dSYM files in matlab subdirectory and deeper
/matlab/**/*.mexmaci64
/matlab/**/*.mexa64
/matlab/**/*.mexw32
/matlab/**/*.mexw64
/matlab/**/*.dSYM
# Unignore file types (including in subdirectories)
!/**/*.c
!/**/*.f90
!/**/*.txt
!/**/*.md
!/**/*.h
!/**/*.h.in
!/**/*.m
!/**/*.inc
# Explicitly reignore fnft_config.h, which is generated by cmake
/include/fnft_config.h