-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
35 lines (28 loc) · 971 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
#- 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, 31 Oct 2011
#- CouchApp configuration files -- these may contain passwords!
.couchapprc
#- JavaScript interpreter history files
.d8_history
.v8_history
#- Mercurial repository itself (if present)
.hg/
#- Vim swap files
*.swp
#- OS generated files
.DS_Store*
ehthumbs.db
Icon\?
.localized
Thumbs.db
#- vim:set syntax=gitconfig: