Eu não sou um mestre de git, mas faço alguns testes de git no meu repositório local de teste de git. Quando eu executo o git push, a saída é:
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>
P: Você configurou o repositório remoto usando o comando git remote add
? Se sim, tente executar git push com o nome do repositório remoto. Se não, configure um, ou use o git push com o url do repositório remoto na linha de comando ( git push git://host.xz[:port]/path/to/repo.git/
).