我在从 git 存储库获取、拉取和克隆时遇到问题。我收到以下错误消息
git -c diff.mnemonicprefix=false -c core.quotepath=false fetch origin
fatal: unable to access 'https://name@domain.tld/scm/project/projectname.git/': error:14077102:SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol
服务器是自托管的 BitBucket 服务器,客户端是 Sourcetree 1.8.3.0。Git 是 2.6.1,但与 2.7.2 出现相同的错误
客户端机器是 Windows 10。
相同的配置适用于 Mac。也使用 TortoiseGit 而不是 Sourcetree 给出错误。所以我怀疑是Win导致了这个问题。
我怎样才能找出真正的问题是什么?错误消息不是很有帮助。
更新:
当我从命令行执行git pull时,这就是我得到的
C:\0.GIT\project>set GIT_TRACE=1
C:\0.GIT\project>set GIT_CURL_VERBOSE=1
C:\0.GIT\project>git pull
08:48:43.730071 git.c:348 trace: built-in: git 'pull'
08:48:43.734740 run-command.c:343 trace: run_command: 'fetch' '--update-head-ok'
08:48:43.974726 git.c:348 trace: built-in: git 'fetch' '--update-head-ok'
08:48:43.988735 run-command.c:343 trace: run_command: 'git-remote-https' 'origin' 'https://ulrich@server.domain.tld/project.git'
* Couldn't find host server.domain.tld in the _netrc file; using defaults
* timeout on name lookup is not supported
* Trying 81.xxx.xxx.xxx ...
* Connected to server.domain.tld (81.xxx.xxx.xxx) port 443 (#0)
* ALPN, offering http/1.1
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
* CAfile: C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
CApath: none
* error:14077102:SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol
* Closing connection 0
fatal: unable to access 'https://ulrich@server.domain.tld/project.git/': error:14077102:SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol