gpt4 book ai didi

Git 错误 : --all can't be combined with refspecs

转载 作者:太空狗 更新时间:2023-10-29 14:32:45 39 4
gpt4 key购买 nike

我在 eclipse 中有一个基于 java 的动态 web 项目,它被放置在 git 下进行源代码控制。我想将这个项目上传到 bitbucket 中的存储库中。为此,我使用了命令下面-

git remote add origin https://myself@bitbucket.org/myself/affablebean.git
git push -u origin --all # pushes up the repo and its refs for the first time

第二个命令给我一个错误。请告诉我为什么会发生这种情况以及如何解决。

error: --all can't be combined with refspecs
usage: git push [<options>] [<repository> [<refspec>...]]

-v, --verbose be more verbose
-q, --quiet be more quiet.................
-u, --set-upstream set upstream for git pull/status
...........................

最佳答案

git push with -u 为分支设置上游,它是一个需要 refspec 的子命令(引用规范:分支、提交等),因此不能使用与 --all.

git push --all origin 是正确的做法。

关于Git 错误 : --all can't be combined with refspecs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24788299/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com