npm
全局包
1 | // 安装全局包 |
配置项
1 | // 查看账号密码 |
具体项目
1 | git remote -v // 远程库地址 |
git
写在前面
1 | 工作目录:都还没add的文件 |
分支操作
1 | // 分支list |
回滚
1 | //本地回滚 |
yarn
使用淘宝镜像
1 | yarn config set registry https://registry.npm.taobao.org |
yarn使用方式
1 | // 安装包 |
实际问题
node-sass安装失败
npm 安装 node-sass 依赖时,会从 github.com 上下载 .node 文件。下载慢1
2npm uninstall node-sass
npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
chromedriver安装失败
1 | npm install chromedriver --chromedriver_cdnurl=http://cdn.npm.taobao.org/dist/chromedriver |
远程有变更,但是本地已修改:
1 | $ git stash //备份当前的工作区的内容 |
文献:
git工作流指南