git 开发操作流程简单示例

  1. 在个人电脑建立项目

     git clone git@*******.gi
  2. 建立分支

    git checkout -b news-branch
  3. 在phpstorm配置与测试服务器目录映射, 共享252的运行环境
  4. 完成开发, 并提交,推送到远程

    git status
    git add .
    git commit -m "desc"
    
    # 推送到远程
    git push origin news-branch
  5. 发起 pull request到develop分支
  6. 管理员合同意并到develop
  7. 切换回develop分支,同步远程代码

    git checkout develop
    git pull
    git status
  8. 删除功能特性分支

    git branch -d news-branch
  9. 通知运维线上部署

标签: 无

发表评论: