##1.环境搭建
1.拷贝源码:git clone 源码地址 leetcode
2.master分支:环境搭建原始内容 git checkout master
3.dev分支:所有源码 git checkout dev
1.Windows
Node\Atom\Git bash
2.Mac
Node\Atom\Item2
学习git地址:https://git.imooc.com/coding-315/leetcode.git
1.es6-javascript
2.javascript-snippets
3.platform IDE terminal
##test.markdown流程图测试
st=>start: 开始
op=>operation: My operation
cond=>condition: Yes or No?
e=>end: 结束
st->op->cond
cond(yes)->e
cond(no)->op
st=>start: 开始
e=>end: 登录
io1=>inputoutput: 输入用户名密码
sub1=>subroutine: 数据库查询子类
cond=>condition: 是否有此用户
cond2=>condition: 密码是否正确
op=>operation: 读入用户信息
st->io1->sub1->cond
cond(yes,right)->cond2
cond(no)->io1(right)
cond2(yes,right)->op->e
cond2(no)->io1