mike628
mike628

Reputation: 49421

svn hanging on password

I am trying to run a dry run of a merge and It hangs when I put in my password.

svn merge --dry-run  --username mpsss -r BASE:HEAD .
Authentication realm: <https://svn.ggg.fff.ccc:443> CORE SVN Site
Password for 'mpsss': Mypassword

I know my password is good.

Upvotes: 2

Views: 348

Answers (1)

Filippo Vitale
Filippo Vitale

Reputation: 8113

A possible solution could be the option: --config-option servers:global:http-library=serf

The full command then:

svn merge --username mpsss --password password --no-auth-cache
          --config-option servers:global:http-library=serf
          --dry-run -r BASE:HEAD .

Upvotes: 1

Related Questions