上一页 1 ··· 17 18 19 20 21
摘要: 一、函数创建 1. 函数声明 (出现在全局作用域,或局部作用域) function add (a, b) { return a + b; } function add(a, b) { return add1(a,b); function add1(m, n) { return m + n; } } 阅读全文
posted @ 2016-10-22 01:13 箫笛 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 1. git fetch --prune 清理远程没有的本地分支 2. git branch -d branchName 删除本地分支 3. git branch |grep 'branchName' |xargs git branch -d 批量删除本地匹配到的branchName的git分支 4 阅读全文
posted @ 2016-09-17 14:15 箫笛 阅读(2327) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21