Github多账户问题

时间:2011-02-14 05:39:01

标签: git ssh github

当我尝试做这样的事情时:
git push git @ github-client:antonyr / Spring-Hibernate.git
我得到的东西如下

No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as 'master'.
error: failed to push some refs to 'git@github-client:antonyr/Spring-Hibernate.git'

顺便说一下,我使用SSH为github.com设置了多个帐户。

请帮忙。

2 个答案:

答案 0 :(得分:2)

您必须指定要推送的分支。推送master

$ git push git@github-client:antonyr/Spring-Hibernate.git master

答案 1 :(得分:0)

在推送到git之前使用以下命令 $ git push origin master

它应该有用。