Sync all branches with git
I think you want to: git fetch –all -Pp where: git fetch Download objects and refs from another (remote) repository –all fetch all remotes. -P remove any remote-tracking references that no longer exist on the remote. -p remove any local tags that no longer exist on the remote. for more use git fetch –help We … Read more