user19074953
user19074953

Reputation:

How to push to another upstream

When I run git branch --av I got theses lines.

enter image description here

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

Answers (1)

matt
matt

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

Related Questions