我可以访问可以访问 GIT 服务器的 SSH 帐户,并且能够在此 SSH 登录中克隆/推送/拉取存储库。但是我无法从其他地方访问这个 repo。
在我使用的 SSH 帐户上,
git clone git@gitserver:proj/myrepo.git
克隆回购。
我尝试使用从另一台机器到 git 服务器的 ssh 隧道,
ssh -L 3333:gitserver:22 userid@sshserver
git clone ssh://localhost:3333/proj/repo.git
但是,我不断收到提示输入用户“git”的密码。有什么想法我在这里做错了吗?