0


如何将 /home/username/www/example.git 与远程添加命令一起使用?

如果我使用这个:

git remote add origin user@example.com:/home/user/www/example.git   
git push origin master

我收到了这个错误:

error: src refspec master does not match any.   
error: failed to push some refs to 'user@example.com:/home/user/www/example.git'
4

1 回答 1

2

git push 的默认行为只是推送“匹配的引用”,即本地和远程存储库中都存在的分支。在您的示例中,没有这样的分支,因此您需要告诉 git push 要显式推送哪些分支,即通过

git push origin branch-to-be-pushed

或者,如果你想推送所有分支,

git push --all origin
于 2011-03-07T10:40:20.090 回答