Browse Source

Update CONTRIBUTION.md

master
Binary Wang 8 years ago
committed by GitHub
parent
commit
0775802853
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      CONTRIBUTION.md

+ 3
- 0
CONTRIBUTION.md View File

@@ -7,6 +7,7 @@


### PR方式贡献代码步骤 ### PR方式贡献代码步骤
* 在 GitHub 上 `fork` 到自己的仓库,如 `my_user/weixin-java-tools`,然后 `clone` 到本地,并设置用户信息。 * 在 GitHub 上 `fork` 到自己的仓库,如 `my_user/weixin-java-tools`,然后 `clone` 到本地,并设置用户信息。

```bash ```bash
$ git clone git@github.com:my_user/weixin-java-tools.git $ git clone git@github.com:my_user/weixin-java-tools.git
$ cd weixin-java-tools $ cd weixin-java-tools
@@ -14,6 +15,7 @@
$ git config user.email "your email" $ git config user.email "your email"
``` ```
* 修改代码后提交,并推送到自己的仓库。 * 修改代码后提交,并推送到自己的仓库。

```bash ```bash
$ #do some change on the content $ #do some change on the content
$ git commit -am "Fix issue #1: change something" $ git commit -am "Fix issue #1: change something"
@@ -21,6 +23,7 @@ $ git push
``` ```
* 在 GitHub 网站上提交 Pull Request。 * 在 GitHub 网站上提交 Pull Request。
* 定期使用项目仓库内容更新自己仓库内容。 * 定期使用项目仓库内容更新自己仓库内容。

```bash ```bash
$ git remote add upstream https://github.com/wechat-group/weixin-java-tools $ git remote add upstream https://github.com/wechat-group/weixin-java-tools
$ git fetch upstream $ git fetch upstream


Loading…
Cancel
Save