List all the tags git tag -l Delete a tag from the remote git push -d origin 1.0 Delete a tag locally git tag -d 1.0
Reset Local branch to remote branch (force pull)
git fetch origin
git reset --hard origin/develop