Skip to content

Instantly share code, notes, and snippets.

View superrnovae's full-sized avatar
🎯
Focusing

Vladislav superrnovae

🎯
Focusing
  • France
View GitHub Profile
@superrnovae
superrnovae / gist:d8b0ddebf23be3dd96633f828a8285ee
Created December 3, 2021 20:30 — 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}