Futurile spent some time investigating and eventually got to the bottom of it.
Useful information is that the Gitea server (git.sdf.org) is hosted on ma.sdf.org. After your Gitea account is created, it will reside on ma.sdf.org at /meta/gitea/gitea-repositories/<your userid>/<git-repository-name>.git
.
$ keychain ~/.ssh/<the-ssh-key-in-gitea> $ ssh -vvv git@git.sdf.org -p 2222
Offering public key: <key> <more output> debug1: Authentication succeeded (publickey). Authenticated to git.sdf.org ([205.166.94.33]:2222).
The server is not configured to allow shell access over this SSH connection, so the test will terminate automatically and return you to your local machine.
$ git pull git@git.sdf.org:2222/<your-sdf-id>/<repository-name>.git $ git pull git@git.sdf.org:2222/futurile/futurile-www.git
or instead
$ git remote add <name> <url> $ git remote add upstream ssh://git@sdf.org:2222/futurile/futurile-www.git $ git push upstream master