-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
123 lines (93 loc) · 1.76 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Identifies files to be ignored by Git.
# Also used by fd|fdfind to identify directories and files to ignore
# generated code
pel-unpackage-init.el
# internal development notes
pel_doc.org
#internal private tools
publish-*.sh
# Temporary holding directories
tmp/*
old/*
# Directory holding potentially future files
other/*
regexp/*
debug/*
learning/*
pelpa.0/*
removed/*
t/*
tmp-bugs/*
tmp-doc-future/*
tmp-future/*
doc/emacs-keys/*
macos-terminal/*
# Potentially future docs - private for now
doc/pdf/repl-cl-sly.pdf
doc/display-buffer.rst
# Potentially future test code
test/elisp-example-with-defun-in-strings.el
test/pel-filedir-tests.el
test/data/*
# PEL Test output directory
test-result/*
compile-logs/*
# GNU Global generated HTML rendering of code
HTML/*
# Local html rendering of reStructuredText or markdown files
# No html files are included in the depot.
*.html
# Byte-Compiled Emacs Lisp files
*.elc
# Packaging
.cask
# Emacs Backup files
*~
# Emacs temporary files
.#*
*#
\#*
# Emacs desktop file
.emacs.desktop
# Emacs emacro directory
.emacros
# usrhome cbr control files
.cbr
# asdf-vm files
\.tool-versions
# Erlang output files
*.beam
# CScope files
cscope.files
cscope.in.out
cscope.out
cscope.po.out
# (C)Tags files
TAGS
TAGS.*
TAGS-PROJECTILE
# Globag gtags files
GPATH
GRTAGS
GTAGS
gtags-explain.*
# HTML rendering of PEL code
HTML/*
# etags-el generated file
.etags-el-files.txt
# Undo-tree save-files
*.~undo-tree
# Build output
out/*
tmp-copies/*
# Local Elpa-compliant Emacs package archive
pelpa/*
# macOS fork files
.DS_Store
# Mercurial DVCS files (when double repository is used)
.hg*
# Links to other directories / used for development
elpa
emacs-26.3
emacslib
# -----------------------------------------------------------------------------