mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-12-17 17:41:32 +08:00
Merge branch 'master' into develop
This commit is contained in:
16
README.md
16
README.md
@@ -26,7 +26,7 @@ Weixin Java Tools 微信公众号/企业号开发Java SDK
|
||||
|
||||
## 版本说明
|
||||
1. 本项目定为每两个月发布一次正式版,版本号格式为X.X.0(如2.1.0,2.2.0等),月底发布新版本,遇到重大问题需修复会及时提交新版本,欢迎大家随时提交Pull Request;
|
||||
1. BUG修复和新特性一般会先发布成小版本作为临时测试版本(如2.0.1-beta,2.0.2-beta等,即尾号不为0,并添加beta字样,以区别于正式版);
|
||||
1. BUG修复和新特性一般会先发布成小版本作为临时测试版本(如2.4.5.BETA,2.4.6.BETA等,即尾号不为0,并添加BETA字样,以区别于正式版);
|
||||
1. 目前最新版本号为 [](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)
|
||||
分别查看所有最新的版本。
|
||||
|
||||
@@ -90,21 +90,21 @@ compile 'com.github.binarywang:weixin-java-cp:2.4.0'
|
||||
|
||||
## PR方式贡献代码步骤
|
||||
* 在 GitHub 上 `fork` 到自己的仓库,如 `my_user/weixin-java-tools`,然后 `clone` 到本地,并设置用户信息。
|
||||
```
|
||||
$ git clone git@github.com:my_user/weixin-java-tools.git
|
||||
$ cd weixin-java-tools
|
||||
$ git config user.name "yourname"
|
||||
$ git config user.email "your email"
|
||||
```bash
|
||||
$ git clone git@github.com:my_user/weixin-java-tools.git
|
||||
$ cd weixin-java-tools
|
||||
$ git config user.name "yourname"
|
||||
$ git config user.email "your email"
|
||||
```
|
||||
* 修改代码后提交,并推送到自己的仓库。
|
||||
```
|
||||
```bash
|
||||
$ #do some change on the content
|
||||
$ git commit -am "Fix issue #1: change something"
|
||||
$ git push
|
||||
```
|
||||
* 在 GitHub 网站上提交 Pull Request。
|
||||
* 定期使用项目仓库内容更新自己仓库内容。
|
||||
```
|
||||
```bash
|
||||
$ git remote add upstream https://github.com/wechat-group/weixin-java-tools
|
||||
$ git fetch upstream
|
||||
$ git checkout develop
|
||||
|
||||
Reference in New Issue
Block a user