gitLab02 Remove local branch git branch -d dev Remove remote branch git push origin --delete dev List all the tags in the repository git tag Delete the tag locally git tag -d v1.0 Delete the tag from the remote repository git push --delete origin v1.0