-
Notifications
You must be signed in to change notification settings - Fork 8.6k
如何参与
wenshao edited this page Aug 30, 2012
·
19 revisions
Druid是一个开放的项目,有很多非阿里巴巴的开发人员参与其中。你也可以成为其中一份子。这里介绍如何参与Druid开发。
-
git有命令行和图形工具,强烈推荐你用命令行工具。
-
eclipse的git插件 Eclispe自带的egit插件,在Eclipse 4.2之前的版本非常不稳定,不推荐使用,在Eclipse 4.2中,也偶发bug,仍然不推荐使用。
- 第1步 Fork自己的仓库
从AlibabaTech/druid项目中fork一个你自己的仓库
druid的官方仓库是: https://github.com/AlibabaTech/druid
fork之后,你的个人仓库是: https://github.com/my_account/druid
-
第2步 Clone到本地
git clone https://github.com/my_account/druid.git
-
第3步 添加远程仓库
git remote add upstream https://github.com/AlibabaTech/druid.git
-
第4步 更新远程代码:
git pull upstream
-
第5步 将远程代码合并到本地仓库
git merge upstream/master
-
第6步 将代码提交自己的仓库
git push
- 第7步 提交pull request