We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c036dcc commit 7b733acCopy full SHA for 7b733ac
src/svn.ts
@@ -99,6 +99,14 @@ export class Svn {
99
args.push("--password", options.password);
100
}
101
102
+ if (options.username || options.password) {
103
+ // Configuration format: FILE:SECTION:OPTION=[VALUE]
104
+ // Disable password store
105
+ args.push("--config-option", "config:auth:password-stores=");
106
+ // Disable store auth credentials
107
+ args.push("--config-option", "servers:global:store-auth-creds=no");
108
+ }
109
+
110
// Force non interactive environment
111
args.push("--non-interactive");
112
0 commit comments