gpt4 book ai didi

git push >> 致命的 : no configured push destination

转载 作者:IT王子 更新时间:2023-10-29 01:15:21 27 4
gpt4 key购买 nike

我仍在阅读有关 RoR 的一些指南,我被困在 Deploying The Demo App

我遵循了说明:

With the completion of the Microposts resource, now is a good time to push the repository up to GitHub:

$ git add .
$ git commit -a -m "Done with the demo app"
$ git push

这里发生的错误是推送部分..它输出了这个:

$ git push
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using
git remote add <name> <url>
git push <name>

所以我尝试通过执行此命令来按照说明进行操作:

$ git remote add demo_app 'www.github.com/levelone/demo_app'
fatal: remote demo_app already exists.

所以我推:

$ git push demo_app
fatal: 'www.github.com/levelone/demo_app' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

我可以在这里做什么?任何帮助将不胜感激。

最佳答案

您指的是此“2.3.5 Deploying the demo app”的“Ruby on Rails Tutorial ”部分:

2.3.1 Planning the application部分,请注意他们做了:

$ git remote add origin git@github.com:<username>/demo_app.git
$ git push -u origin master

这就是简单的 git push 起作用的原因(在这里使用 ssh 地址)。
您是否按照该步骤进行了第一次 push ?

 www.github.com/levelone/demo_app

这不是用于推送到 GitHub 存储库的可写 URI。

https://levelone@github.com/levelone/demo_app.git

这样应该比较合适。
检查 git remote -v 返回的内容,以及是否需要替换远程地址,如 GitHub help page 中所述, 使用 git remote --set-url

git remote set-url origin https://levelone@github.com/levelone/demo_app.git
# or
git remote set-url origin git@github.com:levelone/demo_app.git

关于git push >> 致命的 : no configured push destination,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10032964/

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