start new:
tmux
start new with session name:
tmux new -s myname
| " When the cursor is hold on a word, that word is highlighted. | |
| " When the cursor is moving, the highlight is hidden | |
| set updatetime=300 | |
| au! CursorMoved * set nohlsearch | |
| au! CursorHold * set hlsearch | let @/='\<'.expand("<cword>").'\>' | |
| set hlsearch |
| 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} | |