3-way XML merge algorithm

前提是你 提交于 2019-11-30 02:07:44

I don't have a free solution, I'm afraid, but Project: Merge is a cheap XML comparison and merge tool which can be controlled through the command line. It could probably plug straight in to your application.

dma_k

I can add to your collection DeltaXML - they do not claim diff3, but worth considering.

One free alternative would be to do

$ xmlstarlet fo before.xml > before.xml
$ xmlstarlet fo after.xml > after.xml

and then do

$ diff before.xml after.xml

to create a patch of the XML difference. It's free and simple.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!