git 远程 /home/用户名/www/lorem.git

发布于 2024-10-20 19:00:24 字数 602 浏览 2 评论 0原文


如何通过远程添加命令使用 /home/username/www/example.git ?

如果我使用这个:

git remote add origin [email protected]:/home/user/www/example.git   
git push origin master

我收到此错误:

error: src refspec master does not match any.   
error: failed to push some refs to '[email protected]:/home/user/www/example.git'

How can I use /home/username/www/example.git with remote add command?

if I use this:

git remote add origin [email protected]:/home/user/www/example.git   
git push origin master

I got this error:

error: src refspec master does not match any.   
error: failed to push some refs to '[email protected]:/home/user/www/example.git'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帥小哥 2024-10-27 19:00:24

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

git push origin branch-to-be-pushed

or,如果您想推送所有分支,

git push --all origin

Default behaviour of git push is just to push "matching refs", i.e. branches which are present both in the local and the remote repository. In your example, there are no such branches, so you need to tell git push which branches to push explicitly, i.e. via

git push origin branch-to-be-pushed

or, if you want to push all branches,

git push --all origin
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文