-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
67 lines (57 loc) · 1.36 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
63
64
65
66
67
# .gitignore for exciting
#
# Please familiarise yourself with .gitignore patterns before contributing.
# Also consider whether it is better to add patterns to the root gitignore
# or if a local .gitignore is more appropriate.
#
# Basic patterns
# ----------------------------------------------------------
# Entry Ignores
# ----------------------------------------------------------
# target/ folder named target (due to the trailing /) recursively
# target file or folder named target recursively
# /target file or folder named target in the top-most directory (due to the leading /)
# /target/ folder named target in the top-most directory (leading and trailing /)
# *.class every file or folder ending with .class recursively
# Exciting binaries
# Found in the respective build folder
# Bin directory, covering all executables
/bin/
# System-specific files
# RPM Specification File
*.spec
# Debian
*.deb
# Mac
.DS*
._.DS*
# Files auto-generated by the build process
# Contains date and githash
version.inc
# Documentation
# Ignore build objects and certain temporary extensions
*.o
*.mod
*.a
*.f90_*
*.old
# Leftover git merge files
*.diff
*.orig
# Text editor files
*.save
.*.sw*
*.un~
*~
# TeX files
*.aux
*.dvi
*.log
*.toc
# IDE folders
# VS Code files
/.vscode
# Jetbrains
.idea/
# Ctags tag files
tags