-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hgignore
39 lines (33 loc) · 802 Bytes
/
.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
syntax: regexp
# The recurrent (^|/) idiom in the regexps below should be understood
# to mean "at any directory" while the ^ idiom means "from the
# project's top-level directory".
(^|/).*\.dvi$
(^|/).*\.pdf$
(^|/).*\.o$
(^|/).*\.oct$
(^|/).*\.octlink$
(^|/)octave-core$
(^|/)octave-workspace$
(^|/).*\.tar\.gz$
## Our Makefile target
^target/
## Files generated automatically by autoconf and the configure script
^src/aclocal\.m4$
^src/configure$
^src/autom4te\.cache($|/)
^src/config\.log$
^src/config\.status$
^src/Makefile$
^src/Makeconf$
^src/.*\.m$
# e.g. doc/faq/OctaveFAQ.info
# doc/interpreter/octave.info-4
^doc/.*\.info(-\d)?$
^doc/\w*/stamp-vti$
^doc/\w*/version\.texi$
# Emacs tools create these
(^|/)TAGS$
(^|/)semantic.cache$
# Other text editors often create these
(^|/)~.*