Skip to content

Instantly share code, notes, and snippets.

View scharlton2's full-sized avatar

Charlton, Scott R. scharlton2

View GitHub Profile
@scharlton2
scharlton2 / git-tag-delete-local-and-remote.sh
Created June 4, 2021 16:38 — forked from RomanSerikov/git-tag-delete-local-and-remote.sh
how to delete a git tag locally and remote
# 1. delete local tag '12345'
git tag -d 12345
# 2. delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# 3. alternative approach
git push --delete origin tagName
git tag -d tagName
# 4. delete many tags
@scharlton2
scharlton2 / macos-app-icon.md
Created September 22, 2022 20:51 — forked from jamieweavis/macos-app-icon.md
How to create an .icns macOS app icon