如何在 Github 社区团队开发
Github 是一个庞大的开源社区,上面有许许多多优秀的开源项目。
本文简单介绍如何在 github 参与项目,并贡献自己的代码
发现好的项目时,fork it
克隆项目到本地
git clone [email protected]:/.git
创建分支
git checkout -b your-new-feature
提交更改
git commit -a -m 'add some feature'
提交分支到仓库
git push origin your-new-feature
提交 pull request
许可协议:署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
本文链接:https://tanglj.cn/2016/03/23/how-to-contributing-on-github/