how to change remote branch in git code example
Example 1: git replace local branch with remote
git fetch
git reset --hard origin/{{branch}}
# replace {{branch}} with name
Example 2: git bash upstream branch change
git branch --set-upstream-to=origin/branch
Example 3: git replace local branch with remote
git reset --hard origin/master
Example 4: git bash upstream branch change
git config --edit