我将本地存储库配置为使用SSH(共享服务器),但我想推送我的特定git帐户。我怎样才能做到这一点?是否可以传递一些额外的参数来使用另一种认证而不是默认认证?
答案 0 :(得分:1)
您可以将~/.ssh/config
配置为具有git服务器的部分:
Host github.com
User git
IdentityFile /home/myname/.ssh/id_rsa_my_github_private_key
然后在您的资源库.git/config
中
[remote "github"]
url = git@github.com:myname/myrepository.git
…
HTH