How to get diff between all files inside 2 folders that are on the web?

前端 未结 2 1544
予麋鹿
予麋鹿 2021-01-29 20:17

So I want to compare this folder http://cloudobserver.googlecode.com/svn/branches/v0.4/Boost.Extension.Tutorial/libs/boost/extension/ with this http://svn.boo

2条回答
  •  深忆病人
    2021-01-29 21:07

    Once you have the source trees, e.g.

    diff -ENwbur repos1/ repos2/ 
    

    Even better

    diff -ENwbur repos1/ repos2/  | kompare -o -
    

    and have a crack at it in a good gui tool :)

    • -Ewb ignore the bulk of whitespace changes
    • -N detect new files
    • -u unified
    • -r recurse

提交回复
热议问题