git tracking code example
Example 1: git bash upstream branch change
git branch --set-upstream-to=origin/branch
Example 2: git track remote branch
# Set upstream when pushing to remote
git push -u origin topic
# Set upstream without pushing it
# with option -u / --set-upstream-to
git branch -u origin/topic
git branch --set-upstream-to=origin/topic
Example 3: git bash upstream branch change
git config --edit