how to setup upstream branch in git code example
Example 1: git set upstream
git branch --set-upstream-to <remote-branch>
git branch --set-upstream-to origin feature-branch
git branch -vv
git push -u origin local-branch
Example 2: github set branch upstream
git push --set-upstream origin <remote-branch>
Example 3: git set upstream repository
$ git remote add upstream https:
Example 4: add upstream branch git
git remote add upstream git@bitbucket.org:some-gatekeeper-maintainer/some-project.git
Example 5: git bash upstream branch change
git config --edit
Example 6: check upstream branch git
git status -sb