Home > Software design >  How to push to another upstream
How to push to another upstream

Time:05-11

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?

CodePudding user response:

Just say the name of the remote you want to push to. For example, if you are on master:

git push upstream master
  • Related