If you type git status
on a branch and don’t see the relationship to theorigin, then you need to set the default upstream:
git branch --set-upstream-to origin/MyBranch
Thanks to this StackOverflow answer
If you type git status
on a branch and don’t see the relationship to theorigin, then you need to set the default upstream:
git branch --set-upstream-to origin/MyBranch
Thanks to this StackOverflow answer