一. 向开源项目提交pull request
- fork 相应的项目
 - clone 自己 fork 的项目到本地, 做相应的修改后提交到在自己fork的仓库
 - 进入 github 中自己 fork 项目的页面, 点击 “New pull request” 按钮即可提交
 - 原作者 Merge 或 废弃
 - 提交流程结束
 
二. 提交 commit 时关联/关闭相关 Issue
在提交的Message中 包含以下关键字即可:
- close #XXX
 - closes #XXX
 - closed #XXX
 - fix #XXX
 - fixes #XXX
 - fixed #XXX
 - resolve #XXX
 - resolves #XXX
 - resolved #XXX
 
示例:
fix:a bug at home page(#105)
some text
fixed #105
一次关闭多个多次使用关键字即可, 例如:
fixed #105, fixed #107