在个人电脑建立项目
git clone git@*******.gi
建立分支
git checkout -b news-branch
- 在phpstorm配置与测试服务器目录映射, 共享252的运行环境
完成开发, 并提交,推送到远程
git status git add . git commit -m "desc" # 推送到远程 git push origin news-branch
- 发起 pull request到develop分支
- 管理员合同意并到develop
切换回develop分支,同步远程代码
git checkout develop git pull git status
删除功能特性分支
git branch -d news-branch
- 通知运维线上部署
- 上一篇: git的工作流程
- 下一篇: git 常用命令和模拟真实环境开发命令及问题