最佳答案
如果我使用 gIT _ TRACE = 2环境变量运行“ GIT push”,我会得到以下结果:
09:25:28.098743 git.c:349 trace: built-in: git 'push' 'origin' 'master'
09:25:28.100261 run-command.c:341 trace: run_command: 'ssh' 'git@bitbucket.org' 'git-receive-pack '\''kevinburke/letter.git'\'''
这很好,除了有时我会得到这个错误:
fatal: Could not read from remote repository.
我只是间歇性地得到它,所以我不确定发生了什么。我知道 ssh 有一个冗长的模式:
-v Verbose mode. Causes ssh to print debugging messages about its progress.
This is helpful in debugging connection, authentication, and configuration
problems. Multiple -v options increase the verbosity. The maximum is 3.
如果我能让 git
在打开 -vvv
的情况下运行 ssh 命令,那就太好了。是否有方法通过环境变量或配置设置来启用此功能?