-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
45 lines (37 loc) · 997 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
#- Git configuration file
#- .gitignore ~~
#
# This file contains user-defined filename patterns that Git should ignore
# when it computes changes. Typically, we want to ignore any hidden or
# temporary files created by the operating system or text editor, but I must
# stress that we do not, under _any_ circumstances, want to add a rule that
# may cause us to exclude an important file accidentally. Thus, we will
# script and monitor every step of the workflow *except* version control.
#
# ~~ last updated 19 Oct 2018
#- Temporary files from BibTeX and LaTeX
*.aux
*.bbl
*.blg
*.dvi
*.log
*.out
#- netrw history file? (see: http://goo.gl/jhzdJ)
.netrwhist
#- NFS "silly rename" files
.nfs[0-9a-f]*
#- OS generated files
.DS_Store*
ehthumbs.db
Icon\?
.localized
Thumbs.db
#- Vim swap files
*.swp
#- Vim files (adapted from http://git.io/qmQqxA)
.swp
.*.s[a-w][a-z]
*.un~
Session.vim
*~
#- vim:set syntax=gitconfig: