Skip to content

Instantly share code, notes, and snippets.

View jeccb-zz's full-sized avatar

Jessica Chaves jeccb-zz

View GitHub Profile
@jeccb-zz
jeccb-zz / update_gitTag.txt
Created August 13, 2019 13:41 — 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}
@jeccb-zz
jeccb-zz / tmux-cheatsheet.markdown
Created August 10, 2018 14:17 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname