- 获取项目
git clone git@github.com:xxx/xxx.git
- 更新线上代码
git pull
- 查看本地更改代码
git status
- 上传代码
git add .
git commit -m '说明'
git pull
git push
- 回退
git reset --hard 版本号
git clone git@github.com:xxx/xxx.git
git pull
git status
git add .
git commit -m '说明'
git pull
git push
git reset --hard 版本号