svn使用vimdiff比较文件html
$ cat /usr/local/bin/my_diff_tool.sh #!/bin/sh # Configure your favorite diff program here. DIFF="/usr/bin/vimdiff" # Subversion provides the paths we need as the sixth and seventh # parameters. LEFT=${6} RIGHT=${7} # Call the diff command (change the following line to make sense for # your merge program). $DIFF $LEFT $RIGHT # Return an errorcode of 0 if no differences were detected, 1 if some were. # Any other errorcode will be treated as fatal.
而后在~/.subversion/config 文件中的 [helpers] 栏下面添加:git
diff-cmd = /usr/local/bin/my_diff_tool.sh
如今能够使用svn diff file 参看文件的修改位置了。vim
具体参看:更换svn diff为vimdiffbash
git 使用vimdiff比较文件:ide
$ git config --global diff.tool vimdiff $ git config --global merge.tool vimdiff $ git config --global difftool.prompt false
而后使用git difftool file就能够参看文件的修改位置了。svn
具体参看:Git and Vimdiff命令行
上面都是使用命令行比较文件的修改位置,跟使用emacs作比较有区别。另外研究。code