start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| # @link https://gist.github.com/mattscilipoti/8424018 | |
| # | |
| # Called by "git push" after it has checked the remote status, | |
| # but before anything has been pushed. | |
| # | |
| # If this script exits with a non-zero status nothing will be pushed. | |
| # | |
| # Steps to install, from the root directory of your repo... |
| cd workspace | |
| git clone https://github.com/vim/vim | |
| cd vim | |
| git pull && git fetch | |
| #In case Vim was already installed | |
| cd src | |
| make distclean | |
| cd .. |