Well, the git clone git@localhost:someuser/someproject.git command tries to connect to your localhost using SSH (on port 22). I dunno though why it's asking for the credentials (as if something's listening on this port).
To me it appears that the only sensible way to overcome that brain-dead restriction is to set up an SSH jumphost located in some IP subnet which does not have the access blocked (that is, outside China).
Also there might be other (palliative) solutions:
- If you need to host your own code, do not use github as there are other Git hosting providers which might not have access to them blocked.
- If you need to push to a project you do not own, you could resort to suboptimal ways of contributing code: mailing patch series or
git bundle'd changesets to the maintainer or another person willing to sponsor getting your code in.
Update: well, I re-read your answer, and it seems that you do really have some sort of SSH server running on localhost. So, to clarify: the SSH key used to authenticate at github is used by your client when talking with github's SSH server, not with your local SSH server. I mean, to clone a repo from github using the git:// protocol you did not have to set up any sort of a tunnel at all. And to get to github via SSH you invariably have to connect to github via SSH, which is blocked. It would be great if github had another port (not 22) to accept SSH connections on. But I do not know if they have something like this available.