git switch branch remote code example
Example 1: git replace local branch with remote
git fetch
git reset --hard origin/{{branch}}
# replace {{branch}} with name
Example 2: git replace local branch with remote
git reset --hard origin/master
Example 3: git checkout branch from remote to local
git checkout -b test origin/test
// making a local copy of the branch called "test" from origin.
Example 4: git get remote branch
git fetch
git checkout test