开发者

Is it possible to have two different versions of collabnet svn on the same windows machine?

开发者 https://www.devze.com 2022-12-10 03:06 出处:网络
If so how would I go about settin开发者_高级运维g that up?You could use two batch files svn1 and svn2 that call the different installations. For example:

If so how would I go about settin开发者_高级运维g that up?


You could use two batch files svn1 and svn2 that call the different installations. For example:

REM svn1.cmd
call /path/to/svn/version-x/svn.exe %*

...and:

REM svn2.cmd
call /path/to/svn/version-y/svn.exe %*

If you place these batch files inside your PATH, you can use both versions of svn easily.

0

精彩评论

暂无评论...
验证码 换一张
取 消