git使用说明

1:下载安装GIT客户端

windows客户端下载地址:https://git-scm.com/download/win

linux客户端下载地址:https://git-scm.com/download/linux

2:打开Git   Bash


git使用说明_第1张图片
弹出对话框,输入git

3:克隆项目,运行vue.js项目

# 克隆项目

git clone https://github.com/WebCodeFarmer/houtai.git

# 查看目录

ls

# 进入项目目录

cd houtai

# 安装开发依赖,推荐使用npm安装,cnpm可能会丢包,或者各种兼容性问题

npm install

# 运行

npm run dev

# 打包压缩

npm run build

你可能感兴趣的:(git使用说明)