Skip to content

Instantly share code, notes, and snippets.

View yamenarahman's full-sized avatar
🥊
Fighting! out of the dev corner.

Yamen A. Abdelrahman yamenarahman

🥊
Fighting! out of the dev corner.
View GitHub Profile
@yamenarahman
yamenarahman / gist:99197521259a827e60e89225c427d49f
Last active September 6, 2018 10: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 commit -m "Fix included"
or cherry-pick the commit, whatever is easier
git cherry-pick {num_commit}