#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
| [ | |
| { | |
| "keys":["ctrl+w", "h"], | |
| "command":"focus_group", | |
| "args":{"group":0}, | |
| "context":[{"key":"setting.vintage_ctrl_keys"}, {"key":"setting.command_mode"}] | |
| }, | |
| { | |
| "keys":["ctrl+w", "j"], |
#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
| require.config({ | |
| baseUrl: '/backbone-tests/', | |
| paths: { | |
| 'jquery' : '/app/libs/jquery', | |
| 'underscore' : '/app/libs/underscore', | |
| 'backbone' : '/app/libs/backbone', | |
| 'mocha' : 'libs/mocha', | |
| 'chai' : 'libs/chai', | |
| 'chai-jquery' : 'libs/chai-jquery', | |
| 'models' : '/app/models' |
| * note existing DATABASE_URL for historical notes | |
| * comment out the *-db service in manifest.yml (it does not yet exist) | |
| * create the new db service: e.g. | |
| cf create-service rds shared-psql c2-staging-db | |
| OR | |
| cf create-service rds medium-psql c2-prod-db | |
| * dump the existing db to a file |
React Fiber is an ongoing reimplementation of React's core algorithm. It is the culmination of over two years of research by the React team.
| # Git | |
| alias gs="git status" | |
| alias gc="git status" | |
| alias gl='git pull origin master' | |
| alias gplom='git pull origin master' | |
| alias gplum='git pull upstream master' | |
| alias gpreb='git pull --rebase' | |
| alias gpsh='git push' | |
| alias gpshom='git push origin master' | |
| alias glog='git lg' |