VS Code常用终端命令

 

启动命令

  • npm/cnpm install :加载依赖(淘宝镜像:npm install -g cnpm --registry=https://registry.npm.taobao.org)
  • npm/cnpm run dev :本地启动
  • npm run server :启动

 git命令

  • git status :查看代码修改情况
  • git add .\src\ :将修改添加到暂存区
  • git commit -m '说明文字' :将更改和日志消息一起存储到新的提交中
  • git pull :把gitlab上面的代码拉取下来
  • git push :把提交中的代码推送到gitlab上

 通用命令

  • ctrl + c --> y :停止终端
  • clear :清空终端

 发布命令

  • npm run build
posted @ 2021-02-05 17:34  Tozhang  阅读(844)  评论(0编辑  收藏  举报