Git fatal: remote end hung up

前端 未结 11 602
北海茫月
北海茫月 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:28

    Try following steps, maybe something will give you a hint on your problem:
    1. Run putty and after setting up server name/user name/keys etc. save those settings.
    2. Run plink.exe or plinkw.exe like plink.exe user_name@server, (it'll throw some info at you) just to see if plink can connect to the server.
    3. Check again that git knows that it should use plink, I'd say with all VCSs, that's the problem people have most often, apart from their keys not being set up properly.
    Normally by now most of your ssh problems would be revealed. Now just fix them. :)

    Update:

    I think the problem you have is caused by several gits you've got installed. For the msysgit and cygwin git you'd need to set the GIT_SSH variable. That's done via either 'set GIT_SSH=c:\path\putty\plink.exe' or 'export GIT_SSH=/your/path/putty/putty.exe' respectively. If you're also using tortoise git, you'd need to locate 'properties' (or is it settings?) in it's menu, and set the ssh client there.
    Apart from all that, when specifying git clone URL, use your login name and the server name in there, e.g. 'git clone ssh://user@server/your/path/repo.git User and server names should be used by plink, and plink should be able to connect to the server with those arguments, when all of those requirements are met, you'll be all set.

    Good luck.

    0 讨论(0)
  • 2020-12-01 12:32

    I believe the real problem is that cygwin's ssh looks for .ssh in /home/name/.ssh and mingw's git ssh looks for .ssh in c:/user/name/.ssh

    Chances are your keys are in one and only one of these directories.

    You can trying telling cygwin's .ssh to use a different identity file using the -i switch, or move the keys into both directories, or create an ssh config file in /home/name/.ssh/config.

    I created a config that contains:

    Host github.com
        User jerryasher
        Hostname github.com
        IdentityFile c:/Users/jerry/.ssh/id_rsa
    

    And given that I can use either the mingw git from git bash or cygwin's git from an rxvt to interact with github.

    0 讨论(0)
  • 2020-12-01 12:38

    I had the same problem with plink for git under windows.

    On run of plink.exe -v xxx@host.com it started to show Pageant is running. Requesting keys. Pageant has 1 SSH-2 keys login as: <<< trouble

    Instead of Pageant is running. Requesting keys. Pageant has 1 SSH-2 keys Using user "xxx"

    To resolve this problem I cleaned up the putty registry records and sessions by putty.exe -cleanup

    After that plink starts afresh and asks to trust and store the host again and it is getting connected with no problem !

    0 讨论(0)
  • 2020-12-01 12:38

    I get message: "remote end gung-up, unexpected EOFs, index-pack failed" while cloning git repo but was able to workaround this issue with copssh http://sourceforge.net/projects/sereds/files/Copssh

    The root cause is Cygwin openssh package.

    I removed original openssh from Cygwin, installed copssh and set GIT_SSH variable to point copssh binaries. After this I simply added copssh binaries in the PATH and now I'm using copssh instead of openssh - there is no difference.

    Everything works fine and issue does not appear any more.

    The other solution is to use mSysGit package.

    0 讨论(0)
  • 2020-12-01 12:39

    Check the openssh version you're using in CygWin. Version 5.5p1-1 (which is the latest at this time) gave me the same error. Downgrading to 5.4p1-1 fixed the problem.

    Another solution would be to use putty/plink instead of openssh.

    For more details, see this thread: http://www.mail-archive.com/cygwin@cygwin.com/msg103752.html

    0 讨论(0)
  • 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!

    0 讨论(0)
提交回复
热议问题