Format SVN diff as a side-by-side comparison

前端 未结 3 1634
盖世英雄少女心
盖世英雄少女心 2021-02-01 07:01

I wanted to produce a side by side SVN diff instead of the usual SVN diff output. Is there any way to get this sort of output ?

3条回答
  •  情歌与酒
    2021-02-01 07:35

    You can specify a custom diff command:

    svn --diff-cmd "diff" --extensions "-y" diff
    

    (Or then perhaps even use tools like sdiff)

提交回复
热议问题