Skip to content

Instantly share code, notes, and snippets.

View ricardo-dlc's full-sized avatar
:shipit:
Working

Ricardo de la Cruz ricardo-dlc

:shipit:
Working
  • Cancún, México
  • 20:33 (UTC -05:00)
View GitHub Profile
@kjunggithub
kjunggithub / gist:8330157
Last active July 18, 2024 02:34
git hubflow cheaetsheet

Git HubFlow Cheat Sheet

Preparing the repository

Create the repository on GitHub/Bitbucket. Once created, clone the created repository to your local machine using:

git clone [email protected]:username/repository.git

CD into the repository folder and run the init command to enable to hub flow tools:

cd repo_name
@mobilemind
mobilemind / git-tag-delete-local-and-remote.sh
Last active August 10, 2025 11:21
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