-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
81 lines (56 loc) · 984 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#Ignore swap files
*.swp
#Ignore intermediate TeX files in the latex_practice directory
latex_practice/**/*.log
latex_practice/**/*.aux
#Ignore all intermediate TeX files in Eng_Analysis_AME_525
Eng_Analysis_AME_525/**/*.log
Eng_Analysis_AME_525/**/*.aux
Eng_Analysis_AME_525/**/*.pdf
Eng_Analysis_AME_525/**/*.out
#Ignore build directories
build/
#Ignore g++'s default executable
a.out
#Ignore g++'s pre-compiled headers
*.gch
#Hidden files
.**
#But not itself
!.gitignore
#Barn Directories
/barn**
#Scratch Directories
/scratch**
#Build Directories
**/build
#Slurm output
slurm-**
#Testing Output
output.txt
#Reordered meshes
FEP/a2/Reordered_**
#Results
**/*Results*
#a3 meshes
FEP/a3/a3/
FEP/a3/migrated/
#Latex support files
**.aux
**.log
#Eigen
**igen**
#a4 models and meshes
FEP/a4/models_meshes/
# vim sessions
**.vim
#test directories
test/
#latex style package
*.sty
#text files
*.txt
# but not CMakeLists.txt files
!CMakeLists.txt
#jpg files
*.jpg