How do I prevent SVN from caching credentials for a single repository?

橙三吉。 提交于 2019-12-14 00:43:03

问题


I'm using Collabnet SVN client versions 1.5 & 1.6. My local machine is running Windows Vista x64 (I know, very sad indeed). I would like to force authentication every time I try to perform any subversion operations on a selected repository. How might I set a property or setting to require authentication every time? Thanks for the help and suggestions!


回答1:


You have 2 Solutions:

  1. use the --no-auth-cache switch on all of your commands

  2. edit the Subverison config file (%APPDATA%\Subversion\config )and look for commented line:

# store-passwords = no

and remove the "#" at start of the line. This will switch off Password caching permanently.




回答2:


You want the --no-auth-cache option.



来源:https://stackoverflow.com/questions/1657602/how-do-i-prevent-svn-from-caching-credentials-for-a-single-repository

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!