Git

作者: 陈小賤 | 来源:发表于2017-08-26 17:12 被阅读0次

    1. Git log

    1.1 git log查看指定author

    git log --author xxx
    

    1.2 git log grep

    git log --grep <pattern>
    

    2. Git commit

    2.1 重写commit

    git commit --amend
    

    3. Git rebase

    3.1 合并多个提交

    git rebase -i HEAD^

    相关文章

      网友评论

          本文标题:Git

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