Skip to content

Commit ab85c5b

Browse files
committed
Merge branch 'master' into develop
2 parents 38d817c + 6f07a33 commit ab85c5b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Weixin Java Tools 微信公众号/企业号开发Java SDK
2626

2727
## 版本说明
2828
1. 本项目定为每两个月发布一次正式版,版本号格式为X.X.0(如2.1.0,2.2.0等),月底发布新版本,遇到重大问题需修复会及时提交新版本,欢迎大家随时提交Pull Request;
29-
1. BUG修复和新特性一般会先发布成小版本作为临时测试版本(如2.0.1-beta,2.0.2-beta等,即尾号不为0,并添加beta字样,以区别于正式版);
29+
1. BUG修复和新特性一般会先发布成小版本作为临时测试版本(如2.4.5.BETA,2.4.6.BETA等,即尾号不为0,并添加BETA字样,以区别于正式版);
3030
1. 目前最新版本号为 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.binarywang/weixin-java-parent/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.binarywang/weixin-java-parent) ,也可以通过访问链接 [【公众号】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-mp%22)[【企业号】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-cp%22)
3131
分别查看所有最新的版本。
3232

@@ -90,21 +90,21 @@ compile 'com.github.binarywang:weixin-java-cp:2.4.0'
9090

9191
## PR方式贡献代码步骤
9292
* 在 GitHub 上 `fork` 到自己的仓库,如 `my_user/weixin-java-tools`,然后 `clone` 到本地,并设置用户信息。
93-
```
94-
$ git clone git@github.com:my_user/weixin-java-tools.git
95-
$ cd weixin-java-tools
96-
$ git config user.name "yourname"
97-
$ git config user.email "your email"
93+
```bash
94+
$ git clone git@github.com:my_user/weixin-java-tools.git
95+
$ cd weixin-java-tools
96+
$ git config user.name "yourname"
97+
$ git config user.email "your email"
9898
```
9999
* 修改代码后提交,并推送到自己的仓库。
100-
```
100+
```bash
101101
$ #do some change on the content
102102
$ git commit -am "Fix issue #1: change something"
103103
$ git push
104104
```
105105
* 在 GitHub 网站上提交 Pull Request。
106106
* 定期使用项目仓库内容更新自己仓库内容。
107-
```
107+
```bash
108108
$ git remote add upstream https://github.com/wechat-group/weixin-java-tools
109109
$ git fetch upstream
110110
$ git checkout develop

0 commit comments

Comments
 (0)