Reputation: 49421
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
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