1:下载安装GIT客户端
windows客户端下载地址:https://git-scm.com/download/win
linux客户端下载地址:https://git-scm.com/download/linux
2:打开Git Bash
3:克隆项目,运行vue.js项目
# 克隆项目
git clone https://github.com/WebCodeFarmer/houtai.git
# 查看目录
ls
# 进入项目目录
cd houtai
# 安装开发依赖,推荐使用npm安装,cnpm可能会丢包,或者各种兼容性问题
npm install
# 运行
npm run dev
# 打包压缩
npm run build