参与贡献
$ git clone git@github.com:docker_user/blockchain_guide.git
$ cd blockchain_guide
$ git config user.name "yourname"
$ git config user.email "your email"$ #do some change on the content
$ git commit -am "Fix issue #1: change helo to hello"
$ git push$ git remote add upstream https://github.com/yeasy/blockchain_guide
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
$ git push --force-with-lease origin master # 仅用于你自己的 fork;不确定时优先使用 GitHub 的 Sync fork最后更新于