Found out that git pull stopped working today. Gives an error message:
The unauthenticated git protocol on port 9418 is no longer supported
Solution
First, let’s check where our git is knocking:
git remote -v
If you see the error indicated in the title of this post, then it is knocking on an outdated protocol git://
Now you need to switch to ssh://
, https://
, or git@github.com
. So we write something like:
git remote set-url origin https://github.com/igroglaz/Tangaria.git
Well, only naturally instead of igroglaz and Tangaria – we indicate your turnip 🙂 That’s it, now everything should work. If it doesn’t work, check
so that you have at least version 7.2 of OpenSSH:
ssh -V
Well, check your SSH keys
Good luck!