sync branches with remote git code example
Example 1: git sync local branch with remote
git fetch --prune origin
git reset --hard origin/master
git clean -f -d
Example 2: git sync branches
git fetch origin
git reset --hard origin/master
git clean -f -d
#If you want to retain the changes as unstaged files, use --soft instead of --hard.
#WARNING: All your untracked files will be gone when you do git clean -f -d.