vsCode常用终端命令

记录一下vsCode开发中常用的终端命令

 启动命令

  • 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 :清空终端

欢迎来访我的vue专栏总篇博客 

长期更新

希望能够帮助到你

over

猜你喜欢

转载自blog.csdn.net/qq_41402200/article/details/84754996