-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
45 lines (36 loc) · 1.19 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
#- 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, 15 May 2013
# ~~ last updated 15 May 2013
#- Temporary project directories
#- CouchApp configuration files -- these may contain passwords!
#- JavaScript interpreter history files
#- Mercurial repository itself (if present)
.hg/
#- Node.js modules
#- 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: