0. Overview of eosio.contracts S

作者: furnace | 来源:发表于2019-05-29 16:30 被阅读0次

    Overview of eosio.contracts Source Code

    本系列文章是对 eos 源码的学习总结。

    1. 源代码版本

    1.1 源代码提交日志

    [furnace@localhost eos]$ git log --oneline -n 3
    38d8c2b Merge pull request #7155 from EOSIO/merge-release-1.7.2-to-master
    a2a1e9e Merge branch 'master' into merge-release-1.7.2-to-master
    f34e224 Merge pull request #7152 from EOSIO/bump-to-1.7.2
    [furnace@localhost eos]$ git log --oneline | grep "Bump to 1.7.0"
    c83c212 Bump to 1.7.0
    

    1.2 源代码版本

    [furnace@localhost eos]$ git tag
    ...
    v1.7.0
    v1.7.0-rc1
    v1.7.0-rc2
    v1.7.1
    v1.7.2
    [furnace@localhost eos]$ git checkout v1.7.0
    M       libraries/appbase
    M       libraries/chainbase
    M       libraries/fc
    Note: checking out 'v1.7.0'.
    
    You are in 'detached HEAD' state. You can look around, make experimental
    changes and commit them, and you can discard any commits you make in this
    state without impacting any branches by performing another checkout.
    
    If you want to create a new branch to retain commits you create, you may
    do so (now or later) by using -b with the checkout command again. Example:
    
      git checkout -b new_branch_name
    
    HEAD is now at 686f0de... Merge pull request #6928 from EOSIO/merge-release-1.7.0
    

    本系列都是基于版本 v1.7.0。


    Reference

    1. https://github.com/EOSIO/eosio.contracts

    Contributor

    1. Windstamp, https://github.com/windstamp

    相关文章

      网友评论

        本文标题:0. Overview of eosio.contracts S

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