#Treeit-lite
#Version 1.0.9
#
#This file is used to speed up comparing and searching operation when
#the handling folder is very big. Please duplicate this file and put it
#under the selected source folder, and also put a copy under the target
#folder when comparing with option "Check Duplicates".
#
#a. Line starts with '#' is comment.
#b. Each line contains a match rule to ignore directory or file.
#c. Please duplicate this file and rename it as Treeit_Search.txt to
#   improve performance for searching.

#1. Exclude directories by name (must ends with /)
#m4/
#po/
#test/
#vms/
#dist/
#build/
#.git/
#.svn/
#.hg/
#CVS/
#.deps/
#.libs/

# (ignore directory name has prefix, must ends with /)
# prefix+*/
# ignore all hidden directories
#.+*

# (ignore directory name has suffix, must ends with /)
# *+suffix/

# (ignore directory name contains word, must ends with /)
# *+word+*/
# ...

#2. Exclude directories by full path (must starts and ends with /)
#/xxxx/xxx/xxx/data/
#/xxxx/xxx/xxx/xxx/resource/
#...

#3. Exclude files by specified extension names(must starts with *.)
#*.o
#*.lo
#*.la
#*.so
#*.class
#*.gz
#*.tar
#*.zip
#*.7z
#*.iso
#*.jar
#...
# 

#4. Exclude files by name (with or without extention)
# .DS_Store (already ignored by built in function)
#someFile
#someOtherFile

# (ignore file name has prefix)
#prefix+*
# ignore all hidden files
#.+*

# (ignore file name has suffix)
#*+suffix

# (ignore file name contains word)
#*+word+*
#...

#5. Exclude files by full path (must starts with /)
#/rootfile.txt
#/xxxx/xxx/xxx/someFile
#/xxxx/xxx/xxx/xxx/someOtherFile
#...
#

