I have a git repo on my local instance. I want to access this from outside my home network. Should I create a git server and ssh server on my local instance for this? Also what is the port I should tunnel using ngrok.
Any inputs are greatly appreciated.
As illustrated in issue 193 or issue 145, and ngrok usage, you can directly expose your ssh port (22), with authencation (
authtoken
).In that case, no git server would be needed, you could clone directly your repo with:
('
repo.git
' because you should use a bare repo to push back to)The only git "server" which comes with git is the git daemon (nothing to do with ssh)
You would use ngrok to redirect http only if you had an http server in front of your Git, using the smart http protocol.
In that case, you could configure Apache to call
git-http-backend
.