Git push -v vs. git push

I am using the new IDE with built-in github support. locally from the command line, I can successfully use git push orgin masterand update github. however, my IDE uses a command with a flag -vthat causes an error.

so I tried to go to the command line and replicate the command, and of course this will not work when I use -v

when i used git push -v origin masteri get

fatal: 'origin' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

Does anyone know why this only happens when using a flag -v?

+3
source share
1 answer

"git push -v orgin master", : "orgin" git:

, origin, orgin.

+4

Source: https://habr.com/ru/post/1781722/


All Articles