
Miguel Ángel Portillo Bobadilla
PreguntaHola, me sale este error, alguien sabe que pasa?
➜ first_repo git:(master) 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>
and then push using the remote name
git push <name>

Kevin Morales
Debes agregar la url del repositorio donde quieres agregar tus archivos. Por ejemplo, si está en github debes agregar su url, quedaría algo asi
git remote add origin <url_del_repositorio>
Puedes ver el curso de Git y Github para conocer más sobre esto :)