pycharmには、変更をリモートsvnリポジトリにアップロードするオプションがあります。
しかし、パスワードは必要ありません。どのように提供しますか?
ベストアンサー1
パスワードを求められません。
おそらくキャッシュのためかもしれません。
資格情報キャッシュを無効にできます。個々のコマンドのキャッシュを無効にするには、--no-auth-cacheオプションを渡します。
$ svn commit -F log_msg.txt --no-auth-cache
Authentication realm: <svn://host.example.com:3690> example realm
Username: mark
Password for 'mark':
Adding newfile
Transmitting file data .
Committed revision 2324.
# password was not cached, so a second commit still prompts us
$ svn delete newfile
$ svn commit -F new_msg.txt
Authentication realm: <svn://host.example.com:3690> example realm
Username: mark
[...]
または、資格情報キャッシュを永続的に無効にするには、ランタイム構成ファイル(auth /ディレクトリの横にある)を編集します。単に store-auth-creds を no に設定すると、資格情報はディスクにキャッシュされません。
[auth]
store-auth-creds = no
ソースとしてこれを使用できます協会。