How to fix SVN asks username and password on VSCode start up
- Goto ~/.subversion/auth/svn.simple
- Find and delete the config file which contains my svn site.
- Add the following to the [auth] section of ~/.subversion/config file:
[auth]
password-stores=
- Then run the following in Terminal in your project's catalog:
svn up
Now you can restart your VS Code and it should not request for SVN username/password.
Comments
Post a Comment