forked from qmachine/qmachine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hgignore
45 lines (33 loc) · 1.28 KB
/
.hgignore
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
#- Mercurial configuration file
#- .hgignore ~~
#
# This file contains user-defined filename patterns that Mercurial 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
# should 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!
#
# For more information, see hgignore(5).
#
# ~~ (c) SRW, 31 Oct 2011
#- Vim swap files
# - files that end with '.swp'
\.swp$
#- Mac OS X invisible system files
# - files named exactly '.localized'
# - files named exactly '.DS_Store'
^\.localized$
^\.DS_Store$
#- CouchApp configuration files for rapid development with CouchDB -- these
# may contain unencrypted passwords, so be careful!
# - files named exactly '.couchapprc'
^\.couchapprc$
#- Git repository itself (if present)
.git/
#- Google V8 debugging shell ("d8") interactive history files
# - files named exactly '.d8_history'
^\.v8_history$
^\.d8_history$
#- vim:set syntax=python: