How to specify which SSH key to use within git for git push in order to have gitorious as a mirror?

The answer is to be found in the git reference manual. GIT_SSH If this environment variable is set then git fetch and git push will use this command instead of ssh when they need to connect to a remote system. The $GIT_SSH command will be given exactly two arguments: the username@host (or just host) from … Read more

Which is the best git hosting sw? – Gitolite vs. Gitlab vs. Gitorius [closed]

Gitolite is not a git hosting environment: it is an authorization layer, which grants or denies access to a git repo. It is the https or ssh layer which allows the authentication of a user, and the git repo hosting itself. See “How do programs like gitolite work?” GitLab and Gitorious both provide git hosting, … Read more