git push >> роковой: нет настроенного места назначения push
Я все еще прохожу некоторые руководства по RoR, и я застрял здесь наРазвертывание демо-приложения
Я следовал инструкциям:
With the completion of the Microposts resource, now is a good time to push the repository up to GitHub:
<code>$ git add . $ git commit -a -m "Done with the demo app" $ git push </code>
То, что здесь произошло не так, было в толчковой части .. это вывело это:
<code>$ 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> </code>
Поэтому я попытался следовать инструкциям, выполнив эту команду:
<code>$ git remote add demo_app 'www.github.com/levelone/demo_app' fatal: remote demo_app already exists. </code>
Итак, я нажимаю:
<code>$ 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 </code>
Что я могу сделать здесь? Любая помощь приветствуется.