美文网首页
git 开发流程可以参考这个

git 开发流程可以参考这个

作者: 记忆是条狗 | 来源:发表于2018-04-12 14:48 被阅读0次

    ck = checkout
    pr = pull --rebase

    假设要做一个新功能:
    git ck master
    git pr
    git ck -b feature.xxx
    ...开发中

    假设只有你一个人开发并且希望git树干净:
    (on feature.xxx)git rebase master
    git ck master
    git merge feature.xxx

    否则,如果希望你的开发记录保留:
    git ck master
    git merge --no-ff feature.xxx

    相关文章

      网友评论

          本文标题:git 开发流程可以参考这个

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