Reputation:
When I run git branch --av
I got theses lines.
I am trying to push changes to different remote urls. What does The last line indicate? And how can I push to this upstream?
Upvotes: 1
Views: 561
Reputation: 535316
Just say the name of the remote you want to push to. For example, if you are on master
:
git push upstream master
Upvotes: 2