Eclipse cannot connect to remote git server via ssh egit funny refname [remote rejected] -
i have set git repository through gerrit
. trying push local repository remote 1 created gerrit (ssh linux box).
have imported rsa keys both gerrit , eclipse set repository settings. when try , push upstream
/refs/for/master: head [remote rejected]
repository
ssh://<username>@<ip address>:<port>/<repository name>
funny refname
what 'funny refname` , how can secure connection within eclipse?
a "funny refname" git's way of saying ref name trying push invalid.
you seem have following configuration in remote section (in .git/config
):
push = head:/refs/for/master
it should instead be:
push = head:refs/for/master
Comments
Post a Comment