view .hgignore @ 329:778c91283a73

Add isequal method to allow comparing pyobjects (fixes issue #53) * @pyobject/pyobject.m: Add an 'isequal' method to fix a BIST test and some more tests.
author Abhinav Tripathi <genuinelucifer@gmail.com>
date Fri, 12 Aug 2016 05:45:06 -0700
parents c8da556b6793
children eec3ed1c0578
line wrap: on
line source

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".

(^|/).*\.pyc$
(^|/).*\.dvi$
(^|/).*\.pdf$
(^|/).*\.o$
(^|/).*\.oct$
(^|/).*\.octlink$
(^|/)octave-core$
(^|/).*\.tar\.gz$
(^|/).*\.html

# some common files that the geometry package deals with
# and are rarely meant to be actually committed
(^|/).*\.png
(^|/).*\.svg
(^|/).*\.eps
(^|/).*\.fig

(^|/)m4
(^|/)aclocal\.m4$
(^|/).*\.in$
(^|/).*\.guess$
(^|/).*\.sub$
(^|/)Makefile
(^|/)depcomp
(^|/)missing
(^|/)install-sh
(^|/)libtool
(^|/)ltmain.sh
(^|/)stamp-h1


(^|/)config\.h$
(^|/)config\.log$
(^|/)config\.status$
(^|/)configure$
(^|/)autom4te\.cache($|/)

(^|/)\.deps
(^|/)\.libs

(^|/)octave-workspace

# e.g. doc/faq/OctaveFAQ.info
#      doc/interpreter/octave.info-4
^doc/.*\.info(-\d)?$

^doc/\w*/stamp-vti$
^doc/\w*/stamp-vti$

^doc/latex
^doc/html
^doc/.*\.db$

# Emacs tools create these
(^|/)TAGS$
(^|/)semantic.cache$

# Other text editors often create these
(^|/).*~$