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
@rproenza86
rproenza86 / gist:cfe809c67d5e1d7c8c01620f0164dbe5
Created November 7, 2022 18:26 — forked from danielestevez/gist:2044589
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}