Answers for "how to sync all branches to local"

0

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.
Posted by: Guest on July-24-2020
1

How do I sync local and remote branches?

maybe you're lokking for
git pull origin master
or
git pull origin main
or 
git pull origin <branchname>
Posted by: Guest on June-23-2021

Code answers related to "how to sync all branches to local"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language