美文网首页
git历史版本

git历史版本

作者: 猎手Andy | 来源:发表于2018-08-29 14:43 被阅读0次

    查看git 历史版本

    ##
    # Creates an alias called "git hist" that outputs a nicely formatted git log.
    # Usage is just like "git log"
    # Examples:
    #   git hist
    #   git hist -5
    #   git hist <branch_name>
    #   git hist <tag_name> -10
    ##
    git config --global alias.hist "log --pretty=format:'%C(yellow)[%ad]%C(reset) %C(green)[%h]%C(reset) | %C(red)%s %C(bold red){{%an}}%C(reset) %C(blue)%d%C(reset)' --graph --date=short"
    

    转自git hist

    获取历史版本

    git checkout <hashcode>
    

    相关文章

      网友评论

          本文标题:git历史版本

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