-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.hgignore
84 lines (80 loc) · 1.16 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
syntax: glob
# Ignored files and directories
projection/2d.txt
projection/3d.txt
projection/images/
projection/linear_eq_conversion
ignored_files/
# Temporary and backup files:
\#*#
.*~
*~
.#*
*.bak
# Blender backup files:
*.blend1
# Vim/Gvim temporary files:
.*.swp
.swp
.swo
# Mac OS X invisible directory created by Finder:
.DS_Store
# Windows thumbnail cache:
Thumbs.db
# C-related compiled files:
*.o
# Static libraries:
*.a
# Dynamic libraries:
*.so
# Libtool files:
*.lo
*.la
# Python byte-compiled files:
*.pyc
*.pyo
# LaTeX temporary files:
# http://tex.stackexchange.com/questions/17845/which-auxiliary-latex-files-should-be-ignored-by-version-control-software
# https://github.com/github/gitignore/blob/master/LaTeX.gitignore
# (La)TeX
*.aux
*.log
*.toc
# Lists
*.lof
*.lot
# Index
*.idx
*.ilg
*.ind
# Glossary
*.glg
*.glo
*.gls
# Bib(La)TeX
*.bbl
*.blg
# hyperref
*.out
# latexmk
*.fdb_latexmk
# Other?
*.nav
*.snm
*.vrb
# Unknown
#*.ist
#*.nlo
# AVR temporary files (cleaned on "make clean"):
# *.o is included above
# Don't confuse *.s (generated by gcc) with *.S (manually written assembly source)
*.s
*.elf
*.hex
*.eep
*.lss
*.lst
*.map
*.sym
# Dumps from avrdude:
*.dump