git1~分支合并

作者: 摹喵居士 | 来源:发表于2016-12-05 16:24 被阅读11次

    2016.12.05

    1. 本地创建并checkout branch1分支
      git branch -b branch1
      等效于
      git branch branch1
      git checkout branch1

    2. 本地各种修改文件操作
      git add .
      git commit . -m="xxx"

    3. 本地分支提交远程,提交后远程,可以在agile上编译发布这个分支
      git push origin branch1

    4. 本地回到主干
      git checkout master

    5. 本地合并分支
      git merge branch1

    6. 删除本地分支
      git branch -d branch1

    7. 进入远程gitweb,找到branch1分支,对比差异,远程合并master
      远程和本地的merge单独各自进行

    8. 删除远程分支(如有必要的话)
      git branch -D branch1

    相关文章

      网友评论

        本文标题:git1~分支合并

        本文链接:https://www.haomeiwen.com/subject/phtlmttx.html