Git push the initial master, invalid port number

when i do

git click start of original

I get a warning message saying “wrong port number”, and on the console I see “fatal: the remote end hung up unexpectedly”

Please help me, what am I doing wrong?

thanks

+2
git push
source share
1 answer

It depends on the nature of the repo "origin."

For GitHub, for example, you need the URL git@github.com : so that you can click

My ssh works as expected, and I can click on actions_as_eav without any problems.

Any idea that triggers this?

 rasheed@rashbuntu :~/deprec$ git push -v Pushing to git://github.com/visfleet/deprec.git Looking up github.com ... done. Connecting to github.com (port 9418) ... 207.97.227.239 done. fatal: The remote end hung up unexpectedly 

It seems my git repository turned out to be the wrong url

 git://github.com/visfleet/deprec.git 

against

 git@github.com :visfleet/deprec.git 
+1
source share

All Articles