Comment on page
如何贡献
修改代码后提交,并推送到自己的仓库,注意修改提交消息为对应 Issue 号和描述。
# Update the content
$ git commit -a -s
# In commit msg dialog, add content like "Fix issue #235: describe ur change"
$ git push
定期使用项目仓库内容更新自己仓库内容。
$ git remote add upstream https://github.com/yeasy/docker_practice
$ git fetch upstream
$ git rebase upstream/master
$ git push -f origin master
最近更新 1yr ago