I cannot complete the push command, the command starts the execution but does not finish

Asked

Viewed 52 times

0

After performing the steps below the push was started but was not completed, just does not complete, does not display any message.

$ git init
$ git add *
$ git commit -m "commit inicial"
$ git remote add origin https://github.com/anthony-farias/projeto-dotnet.git
$ git push origin master

Não sai desse ponto

2 answers

1


I entered your git via link would not be master but main;

$ git init
$ git add *
$ git commit -m "commit inicial"
$ git remote add origin https://github.com/anthony-farias/projeto-dotnet.git
$ git push origin main
  • 1

    That really was the mistake, thank you for the reply.

-3

Browser other questions tagged

You are not signed in. Login or sign up in order to post.