Skip to content

Commit 944c0be

Browse files
committed
maint: add ihgignore
1 parent a90c9c0 commit 944c0be

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.hgignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
syntax: regexp
2+
# The recurrent (^|/) idiom in the regexps below should be understood
3+
# to mean "at any directory" while the ^ idiom means "from the
4+
# project's top-level directory".
5+
6+
(^|/).*\.dvi$
7+
(^|/).*\.pdf$
8+
(^|/).*\.o$
9+
(^|/).*\.log$
10+
(^|/).*\.oct$
11+
(^|/).*\.octlink$
12+
(^|/)octave-core$
13+
(^|/).*\.tar\.gz$
14+
15+
## Our Makefile target
16+
^release/
17+
18+
## Files generated automatically by autoconf and the configure script
19+
(^|/)aclocal\.m4$
20+
(^|/)configure$
21+
(^|/)autom4te\.cache($|/)
22+
^src/config\.log$
23+
^src/config\.h\.in$
24+
^src/config\.status$
25+
^src/Makefile$
26+
27+
# e.g. doc/faq/OctaveFAQ.info
28+
# doc/interpreter/octave.info-4
29+
^doc/.*\.info(-\d)?$
30+
31+
^doc/\w*/stamp-vti$
32+
^doc/\w*/version\.texi$
33+
34+
# Emacs tools create these
35+
(^|/)TAGS$
36+
(^|/)semantic.cache$
37+
38+
# Other text editors often create these
39+
(^|/)~.*

0 commit comments

Comments
 (0)