I have a repo that is forked, call this myFork. The repo that I forked from, call it upstream.
I set up the upstream repo using this: https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork
On myFork, I have 2 branches: master and myDevelop.
For master, it is used to track changes to upstream/master.
How do I setup so that myDevelop to track upstream/develop only?
To expand the question further, how do I:
- set xyz branch on
myForkto set abc branch onupstream?