Skip to content

Instantly share code, notes, and snippets.

View rproenza86's full-sized avatar
:octocat:
I may be slow to respond.

Raúl R. Proenza rproenza86

:octocat:
I may be slow to respond.
View GitHub Profile
@danielestevez
danielestevez / gist:2044589
Last active June 30, 2024 09:04
GIT Commit to an existing Tag
1) Create a branch with the tag
git branch {tagname}-branch {tagname}
git checkout {tagname}-branch
2) Include the fix manually if it's just a change ....
git add .
git ci -m "Fix included"
or cherry-pick the commit, whatever is easier
git cherry-pick {num_commit}