gpt4 book ai didi

git - '致命的 : No destination configured to push to’ error when I do a 'git push'

转载 作者:IT王子 更新时间:2023-10-29 00:58:33 24 4
gpt4 key购买 nike

我尝试检查一个远程分支。

然后提交然后推送。

当我执行“git push”时,出现fatal: No destination configured to push to 错误。

这是我使用的命令序列:

$ git checkout remote/test-1.6
$ git checkout -b test-1.6
$ git commit -a -m "commit message"
$ git push
fatal: No destination configured to push to.

谢谢。

最佳答案

您的存储库可能已经有一个远程,但您的新分支尚未配置为使用它。这应该有效:

git push --set-upstream remote test-1.6

完成一次后,现在有一个跟踪分支,您以后可以简单地使用“git push”——假设您已将当前分支的上游推送配置为默认值,如下所示:

git config --global push.default tracking

或者(首选)从 git 1.7.4 开始:

git config --global push.default upstream

关于git - '致命的 : No destination configured to push to’ error when I do a 'git push' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7680989/

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