-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
34 lines (30 loc) · 1000 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
#- 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, my own policy
# is to script and monitor every step of my workflow except for version
# control -- always execute your commits manually!
#
# ~~ (c) SRW, 18 Jul 2013
# ~~ last updated 18 Jul 2013
#- Vim files (taken from http://git.io/qmQqxA)
.*.s[a-w][a-z]
*.un~
Session.vim
.netrwhist
*~
#- OS generated files (adapted from http://git.io/fBFWrw)
._*
.DS_Store
.DS_Store?
.localized
.Spotlight-V100
.Trashes
ehthumbs.db
Icon?
Thumbs.db
#- vim:set syntax=gitconfig: