最少有三个长期分支
- master: 用于生产环境部署
- testing: 用于测试环境测试
- dev: 用于日常开发
有一些临时分支
| # Make it use C-a, similar to screen.. | |
| unbind C-b | |
| unbind l | |
| set -g prefix C-a | |
| bind-key C-a last-window | |
| # Reload key | |
| bind r source-file ~/.tmux.conf | |
| set -g history-limit 1000 |
| # SnipMate is required to use snippets | |
| # Download SnipMate: http://www.vim.org/scripts/script.php?script_id=2540 | |
| # Put this file in ~/.vim/snippets/ then restart vim | |
| # This snippet file includes many useful snippets for CodeIgniter. Please feel free to fork and contribute! | |
| snippet php | |
| <?php | |
| ${1} | |
| ?> | |
| snippet phpil | |
| <?php ${1} ?> |
| #include "stdafx.h" | |
| #include <iostream> | |
| #include <string> | |
| using namespace std; | |
| int _tmain(int argc, _TCHAR* argv[]) | |
| { | |
| string hexaNumber,hexa,truebinaryNumber; | |
| int strlength,i,decimalNumber=0,hx,binary,iterator=0,binaryNumber=0; |