Repository: incubator-rocketmq-site
Updated Branches:
refs/heads/master 6c15a46ce -> 568e53c59
Make clear the original repo and mirrored repo
Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/568e53c5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/568e53c5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/568e53c5
Branch: refs/heads/master
Commit: 568e53c59ea0c39054be8318502e1ec25aba7753
Parents: 6c15a46
Author: dongeforever <dongeforever@apache.org>
Authored: Mon Apr 3 11:23:52 2017 +0800
Committer: dongeforever <dongeforever@apache.org>
Committed: Mon Apr 3 11:23:52 2017 +0800
----------------------------------------------------------------------
...017-03-24-the-correct-posture-of-submitting-pull-request.md | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/568e53c5/_posts/2017-03-24-the-correct-posture-of-submitting-pull-request.md
----------------------------------------------------------------------
diff --git a/_posts/2017-03-24-the-correct-posture-of-submitting-pull-request.md b/_posts/2017-03-24-the-correct-posture-of-submitting-pull-request.md
index 19decdf..dafdcb2 100644
--- a/_posts/2017-03-24-the-correct-posture-of-submitting-pull-request.md
+++ b/_posts/2017-03-24-the-correct-posture-of-submitting-pull-request.md
@@ -2,13 +2,13 @@
### Prepare the repo
-* fork the original repo
+* fork the apache repo on Github

Click the "fork" button, a forked repo will be added to your repo list.
* clone the forked repo, here take "foo" as example
> git clone https://github.com/foo/incubator-rocketmq.git
-* add original remote repo
+* add apache remote repo
> git remote add apache https://github.com/apache/incubator-rocketmq.git
* show the remote repos
@@ -18,6 +18,8 @@ Click the "fork" button, a forked repo will be added to your repo list.
> origin https://github.com/foo/incubator-rocketmq.git (fetch)
> origin https://github.com/foo/incubator-rocketmq.git (push)
+**Note**: https://github.com/apache/incubator-rocketmq.git is a read-only repo, mirrored
from git://git.apache.org/incubator-rocketmq.git. For submitting PR, fork this read-only repo
on Github is OK.
+
### Use a new branch to write your own code and commit
you'd better use a new branch for each PR, for it is convenient to manage your code and commits
> git checkout -b new_pr
|