其他分享
首页 > 其他分享> > Source Insight 配置 SVN

Source Insight 配置 SVN

作者:互联网

如下方法是在Source Insight中配置四个常用的SVN命令,
其中包括:更新、上传、查LOG、差异对比。
最简单的理由:
经常在写代码时要看一下修改记录,以前一般是在文件夹中找到这个文件然后查看修改记录,这种方法太麻烦了。后来在看TortoiseSVN的帮助文档时看到外部程序调用TortoiseSVN的方法。一直想在source insight中用快捷键查看当前文件的修改日志。

具体配置方法:
TortoiseProc.exe的目录请以自己电脑上的为准。

SVN log
option->Custom Commands
添加一个命令
名字:SVN log  (随便自己写)
运行:"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:log /path:%f /notempfile /closeonend
然后点Keys,选择刚添加的命令,按Assign New Key设定自己的快捷键。

SVN Diff
option->Custom Commands
添加一个命令
名字:SVN Diff  (随便自己写)
运行:"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:diff /path:%f /notempfile /closeonend
然后点Keys,选择刚添加的命令,按Assign New Key设定自己的快捷键。

SVN Update
option->Custom Commands
添加一个命令
名字:SVN Update  (随便自己写)
运行:"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:update /path:%f /notempfile /closeonend
然后点Keys,选择刚添加的命令,按Assign New Key设定自己的快捷键。

SVN Commit
option->Custom Commands
添加一个命令
名字:SVN Commit  (随便自己写)
运行:"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:commit /path:%f /notempfile /closeonend
然后点Keys,选择刚添加的命令,按Assign New Key设定自己的快捷键。

如果快捷键够用的话,还可以配置如下三个命令:

SVN Lock
option->Custom Commands
添加一个命令
名字:SVN Lock  (随便自己写)
运行:"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:lock /path:%f /notempfile /closeonend
然后点Keys,选择刚添加的命令,按Assign New Key设定自己的快捷键。

SVN Unlock
option->Custom Commands
添加一个命令
名字:SVN Unlock  (随便自己写)
运行:"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:revert /path:%f /notempfile /closeonend
然后点Keys,选择刚添加的命令,按Assign New Key设定自己的快捷键。

SVN Update all
option->Custom Commands
添加一个命令
名字:SVN Update all  (随便自己写)
运行:"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:update /path:*.*  /notempfile /closeonend
然后点Keys,选择刚添加的命令,按Assign New Key设定自己的快捷键。
 

标签:SVN,命令,Insight,TortoiseProc,快捷键,Source,添加,TortoiseSVN
来源: https://blog.csdn.net/u012520394/article/details/120443827