告诉 SVNKit 不要存储凭据或至少更改路径
每次我连接到存储库时,凭据都会存储在 .subversion 目录下的用户主文件夹中(UNIX 系统)。无论如何不要这样做,或者至少在命令行下指定另一个目录,例如 --config-dir 选项?
我做了一个小技巧,暂时更改 user.home java 属性,但这在 Windows 上不起作用。
预先感谢,
瑞
Every time I connect to a repository the credentials are stored in the user's home folder under the .subversion directory (UNIX systems). Is there anyway not to do this, or at least specify another directory something like --config-dir option under the command line?
I made a little hack that is change temporarily the user.home java property, but this doesn't work on Windows.
Thanks in advance,
Rui
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
createDefaultAuthenticationManager()
实现之一允许这样做。它是 org.tmatesoft.svn.core.wc.SVNWCUtil 中的静态方法。
以下是 https://svnkit.com/javadoc/ 的描述
因此,您可以执行类似的操作。
One of the
createDefaultAuthenticationManager()
implementations allows this.It is a static method in
org.tmatesoft.svn.core.wc.SVNWCUtil
.Here is the description from https://svnkit.com/javadoc/
So, you could do something like.