我仍在阅读一些关于 RoR 的指南,我被困在部署演示应用程序中
我按照指示:
随着 Microposts 资源的完成,现在是将存储库推送到 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
我可以在这里做什么?任何帮助将非常感激。