When did GitHub drop ssh?
I don’t see anything about this anywhere, but the clone options only show https and a proprietary client of some kind. I can appreciate all the nice utilities they provide with managing non git features, such as CI/CD stuff that I was doing through another CLI…
But I feel like I was left in the lurch a bit. Existing projects with submodules are now exploding because they get public key denied errors. Granted, submodules always felt like a hack…
The pattern `git@github.com:${PROJECT}/${REPO}` has to be replaced with `https://github.com/${PROJECT}/${REPO}` so it’s not too big of a problem, but I feel like I’ve wasted too much time on this already.
Sed to the rescue:
sed -i -e 's,git@github.com:,https://github.com/,g' .git/config
(Completely untested, I did something similar from within Vim, though)
updated: 2023-02-19 09:53:54 -0500
generated: 2023-03-12