Cannot get remote repository information.
Perhaps git-update-server-info needs to be run there?
Took me scratching my head for a while.
The problem was that my old client is too dumb to read the metadata of the HTTP/HTTPS URI of the git repo. Yes, it sounds like updating the client is the easiest solution. Well, it's NOT, not in my case as I can't simply update the client at this time. The simplest and easiest solution - use the git URI instead of the HTTP/HTTPS. Perhaps it would save you some trouble if you always use the git protocol instead.
From: https://github.com/your/Repo.git
To: git://github.com/your/Repo.git
Enough said!
1 comment:
I always use the following format for read/write:
git@github.com:me/myrepo.git
Post a Comment