开发者

Dynamic username in svn:externals URL

开发者 https://www.devze.com 2023-03-13 07:59 出处:网络
In my project directory I have svn:externals set to the following: library svn+ssh://MY_USERNAME@some.server.com/library

In my project directory I have svn:externals set to the following:

library svn+ssh://MY_USERNAME@some.server.com/library

where MY_USERNAME is my personal username. It works for me, but if another person checks out my project i开发者_Python百科t will fail since they can't log in with my username. Is it possible to somehow make MY_USERNAME become the username of whoever checked out the project or the username used when running svn update on the library folder?


Maybe try to create another user with read only access?

Another option that you can try is to try Keyword substitution but I have no idea if it will work on properties.

Have you tried relative urls?

  • ../ Relative to the URL of the directory on which the svn:externals property is set

  • ^/ Relative to the root of the repository in which the svn:externals property is versioned

  • // Relative to the scheme of the URL of the directory on which the svn:externals property is set

  • / Relative to the root URL of the server on which the svn:externals property is versioned

0

精彩评论

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