Git fatal: remote end hung up

前端 未结 11 668
北海茫月
北海茫月 2020-12-01 12:23

So I thought I had finally got everything setup on Windows ... then ran into this issue.

Current setup

URL: ssh://user@host:port/myapp.git

11条回答
  •  广开言路
    2020-12-01 12:44

    Try to use absolute path to repo in a URL, that worked for me.

    Instead of:

    git ssh://user@host:port/myapp.git
    

    Write:

    git ssh://user@host:port//home/user/repo/myapp.git
    

    Notice the double slash!

提交回复
热议问题