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?
source
share