我有一个代码目录结构,它是这样的:
modudle1
trunk
pom.xml
branches
1.1
pom.xml
modudle2
trunk
pom.xml
submodule-2.1
pom.xml
submodule-2.2
pom.xml
branches
1.1
pom.xml
submodule-2.1
pom.xml
submodule-2.2
pom.xml
我需要将主干文件夹中的 pom.xml 文件与分支/1.1 中的文件进行比较:
modudle1\trunk\pom.xml
modudle1\branches\1.1\pom.xml
modudle2\trunk\pom.xml
modudle2\branches\1.1\pom.xml
modudle2\trunk\submodule-2.1\pom.xml
modudle2\branches\1.1\submodule-2.1\pom.xml
modudle2\trunk\submodule-2.2\pom.xml
modudle2\branches\1.1\submodule-2.2\pom.xml
有哪些解决方案可以做到这一点?是否有与 WinMerge 一起使用的解决方案,我可以在其中提供一个文件列表进行比较?也欢迎其他建议和工具。