git分支管理

作者: yanghx | 来源:发表于2020-07-28 15:34 被阅读0次

    GIT分支管理

    链接 https://juejin.im/post/5d82e1f3e51d4561d044cd88#heading-4

    常用命令

    # 从 develop 分支上创建 feature 分支:
    git checkout –b feature-20190919-i18n develop
    # 合并 feature 分支到 develop 分支: git checkout develop
    git merge --no-ff feature
    # 删除本地 feature 分支:
    git branch –d feature-20190919-i18n
    # 删除远程 feature 分支:
    git push origin :feature-20190919-i18n
    
    
    

    git rebase的使用

    链接https://segmentfault.com/a/1190000011595613

    保持commIt整洁的合并代码

    假设我当前在master分支,想要合并dev分支
    
    git pull  //拉取最新的
    git merge  --no-ff dev   //合并   
    git rebase origin/master  // 整理commit 信息,在提交到远程分支之前
    git push 
    
    
    image.png

    相关文章

      网友评论

        本文标题:git分支管理

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