09 2019 档案
npm执行gulp提示编译错误
摘要:script如下 "test":"gulp --gulpfile test.js" 运行 npm run test ,提示编译错误 解决办法如下: 增加script "start":"npm run test", "test":"gulp --gulpfile test.js" 运行如命令即可:np
阅读全文
windows 下批量删除git 分支
摘要:删除筛选出来的分支,比如fixed git branch -D @(git branch | select-string "fixed" | Foreach {$_.Line.Trim()}) 除了master分支,其他都删除 git branch -D @(git branch | select-
阅读全文