Skip to content

Instantly share code, notes, and snippets.

View rkokhatskyi's full-sized avatar
🏄‍♂️
👨‍💻 ⛓️ 🏆

Roman Kokhatskyi rkokhatskyi

🏄‍♂️
👨‍💻 ⛓️ 🏆
View GitHub Profile
@ibraheem4
ibraheem4 / postgres-brew.md
Last active June 28, 2024 18:57 — forked from sgnl/postgres-brew.md
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
  2. brew update
@mobilemind
mobilemind / git-tag-delete-local-and-remote.sh
Last active June 22, 2024 05:19
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName