Blog
-
testing
hi -
testing acf
https://wp.redbehemoth.com/wp-content/uploads/2016/11/Cute-Kitten-kittens-16123796-1280-800.jpg

20170505
-
How to rename a tag already pushed to a remote git repository
Sometimes when you work on a repository that isn’t managed by one person, the tagging becomes a mess. Here’s a way to clean it up.
- Rename the tag locally:
git tag new-tag-name old-tag-name
- Push to remote:
git push origin new-tag-name
- Delete tag locally:
git tag -d old-tag-name
- Push to remote:
git push origin :refs/tags/old-tag-name
- Rename the tag locally: