git push >> fatal: no hay destino push configurado

Todavía estoy revisando algunas guías sobre RoR y estoy atrapado aquí enDesplegando la aplicación de demostración

Seguí las instrucciones:

Con la finalización del recurso Microposts, ahora es un buen momento para enviar el repositorio a GitHub:

<code>$ git add .
$ git commit -a -m "Done with the demo app"
$ git push
</code>

Lo que sucedió mal aquí fue la parte de empuje ... dio como resultado esto:

<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>

Así que intenté seguir las instrucciones haciendo este comando:

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

Así que presiono:

<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>

¿Qué puedo hacer aquí? Cualquier ayuda sería muy apreciada.

Respuestas a la pregunta(2)

Su respuesta a la pregunta