OSDN Git Service

Merge branch 'master' of https://github.com/winmerge/winmerge into jp
[winmerge-jp/winmerge-jp.git] / Filters / SourceControl.flt
1 ## This is a directory/file filter for WinMerge 
2 ## This filter lets through only files ASP.NET developers care about 
3 name: Exclude Source Control
4 desc: Exclude Source Control files and directories
5
6 ## This is an inclusive (loose) filter
7 ## (it lets through everything not specified)
8 def: include
9
10
11 ## Filters for filenames begin with f: 
12 ## Filters for directories begin with d: 
13 ## (Inline comments begin with " ##" and extend to the end of the line) 
14
15 ## f: \.bzrignore$ ## Bazaar ignore file
16 ## f: \.cvsignore$ ## CVS ignore file
17 ## f: \.gitignore$ ## Git ignore file
18 ## f: \.hgignore$ ## Mercurial ignore file
19 ## f: \.svnignore$ ## Subversion ignore file
20
21 f: \.(vs[sp])?scc$  ## Visual SourceSafe files
22
23 d: \\\.svn$ ## Subversion working copy
24 d: \\_svn$  ## Subversion working copy ASP.NET Hack
25 d: \\cvs$   ## CVS control directory
26 d: \\\.git$ ## Git directory
27 d: \\\.bzr$ ## Bazaar branch
28 d: \\\.hg$ ## Mercurial repository