We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af30e2 commit 0775802Copy full SHA for 0775802
CONTRIBUTION.md
@@ -7,20 +7,23 @@
7
8
### PR方式贡献代码步骤
9
* 在 GitHub 上 `fork` 到自己的仓库,如 `my_user/weixin-java-tools`,然后 `clone` 到本地,并设置用户信息。
10
+
11
```bash
12
$ git clone [email protected]:my_user/weixin-java-tools.git
13
$ cd weixin-java-tools
14
$ git config user.name "yourname"
15
$ git config user.email "your email"
16
```
17
* 修改代码后提交,并推送到自己的仓库。
18
19
20
$ #do some change on the content
21
$ git commit -am "Fix issue #1: change something"
22
$ git push
23
24
* 在 GitHub 网站上提交 Pull Request。
25
* 定期使用项目仓库内容更新自己仓库内容。
26
27
28
$ git remote add upstream https://github.com/wechat-group/weixin-java-tools
29
$ git fetch upstream
0 commit comments