我正在运行一个svn co svn+ssh://
来检查一个大型存储库。它似乎挂了很长时间没有任何反馈。
svn co svn+ssh://example.com/test test
如何为 svn + ssh 启用详细或调试模式?
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