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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -