对比源代码工具Beyond Compare、WinMerge
这里暂时只简单对比一下Beyond Compare和WinMerge基本使用,Meld有需要再补充
参考:Beyond Compare对比相同文件仍显示红色怎么办
在使用git进行版本checkout的时候,无法保证时间的先后顺序,所以禁止掉
定制颜色参考:介绍Beyond Compare颜色修改技巧
-tags;-.git\;-out\
[工具] -> [选项] -> [调整]
默认字体有点难看,参考:How to change WinMerge font size?
[View] -> [Select Font]
gitignore++.flt
## This is a directory/file filter for WinMerge
name: gitignore++
desc: Ignore .git and IDE-specific files and directories
## Select if filter is inclusive or exclusive
## Inclusive (loose) filter lets through all items not matching rules
## Exclusive filter lets through only items that match to rule
## include or exclude
def: include
## Filters for filenames begin with f:
## Filters for directories begin with d:
## (Inline comments begin with " ##" and extend to the end of the line)
f: \.iml$
f: \.buildpath$
f: \.classpath$
f: \.project$
f: nbactions\.xml$
f: nb-configuration\.xml$
f: tags
d: \\\.git$
d: \\\.idea$
d: \\\.settings$
d: \\nbproject$
d: \\target$
注意:上面文件过滤的 \. 表示的是 .,也就是文件后缀的 .;文件夹过滤的 \\ 表示的是Windows目录 \;
感觉使用上显示没有Beyond Compare那么明显





