如何在SVN checkout SSH上启用详细或调试

时间:2017-04-24 04:30:51

标签: svn ssh svn-ssh

我正在运行svn co svn+ssh://来检查大型存储库。它看起来很长时间没有任何反馈。

svn co svn+ssh://example.com/test test

如何为svn + ssh启用详细或调试模式?

1 个答案:

答案 0 :(得分:0)

SVN_SSH变量导出到ssh -v

export SVN_SSH="ssh -v "

将在svn+ssh://结帐时显示详细的调试信息:

debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to example.com port 22.
debug1: Connection established.
...

信用:halkeye.net