VsCode ——Vue 的项目运行调试

配置  Node.js   地址:

ctrl+~ 打开命令窗口

启动命令

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

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

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

原文地址:https://www.cnblogs.com/qiao298/p/15042701.html