You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2015/04/29 19:38:50 UTC

activemq-artemis git commit: Changes on README

Repository: activemq-artemis
Updated Branches:
  refs/heads/master 46254e72b -> c65bec548


Changes on README

Just renaming URLs after the github / apache rename


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/c65bec54
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/c65bec54
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/c65bec54

Branch: refs/heads/master
Commit: c65bec54842dc4e49aadd82bf0a5077941b49046
Parents: 46254e7
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed Apr 29 13:37:27 2015 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed Apr 29 13:38:22 2015 -0400

----------------------------------------------------------------------
 README.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/c65bec54/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 9dc4087..3c7ec50 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ started coding in this project.
 
 The project's source code is hosted at:
 
-https://git-wip-us.apache.org/repos/asf/activemq-6.git
+https://git-wip-us.apache.org/repos/asf/activemq-artemis.git
 
 ### Git usage:
 
@@ -232,9 +232,9 @@ Do not use the [maven-eclipse-plugin] to copy the files as it conflicts with [m2
 
 ### Repositories
 
-The code repository for ActiveMQ Artemis is hosted by Apache org and lives here: https://git-wip-us.apache.org/repos/asf/activemq-6.git.
+The code repository for ActiveMQ Artemis is hosted by Apache org and lives here: https://git-wip-us.apache.org/repos/asf/activemq-artemis.git.
 
-We also host a mirror of the ActiveMQ Artemis repository on GitHub: https://github.com/apache/activemq-6.  We use this mirror for all code submissions and reviews.  To submit code to ActiveMQ Artemis please open a Pull Request as outlined as part of the GitHub workflow described here: https://guides.github.com/introduction/flow/index.html.  Once a pull request is opened it will be reviewed and commented on.  Any further changes as a result of comments / review process should be addressed and reflected in the original pull request as outlined in the GitHub workflow.  When the pull request has went through the review process and ready to merge, the reviewer should comment with "Ack, Ready to Push".  Once an Ack message is received one of the ActiveMQ Artemis core team members will push the changes to upstream Apache ActiveMQ Artemis repository and close the pull request.
+We also host a mirror of the ActiveMQ Artemis repository on GitHub: https://github.com/apache/activemq-artemis.  We use this mirror for all code submissions and reviews.  To submit code to ActiveMQ Artemis please open a Pull Request as outlined as part of the GitHub workflow described here: https://guides.github.com/introduction/flow/index.html.  Once a pull request is opened it will be reviewed and commented on.  Any further changes as a result of comments / review process should be addressed and reflected in the original pull request as outlined in the GitHub workflow.  When the pull request has went through the review process and ready to merge, the reviewer should comment with "Ack, Ready to Push".  Once an Ack message is received one of the ActiveMQ Artemis core team members will push the changes to upstream Apache ActiveMQ Artemis repository and close the pull request.
 
 ### Commit Messages
 
@@ -277,18 +277,18 @@ To setup repositories for reviewing and pushing:
 
 ```bash
   # Clone the GitHub Mirror of ActiveMQ Artemis Repo:
-  git clone git@github.com:apache/activemq-6.git
+  git clone git@github.com:apache/activemq-artemis.git
 
-  # Add the following section to your <artemis-repo>/.git/config statement to fetch all pull requests sent to the GitHub mirror.  Note that the remote name for git@github.com:apache/activemq-6.git may be different.  Be sure to edit all references to the remote name.  In this case "activemq".
+  # Add the following section to your <artemis-repo>/.git/config statement to fetch all pull requests sent to the GitHub mirror.  Note that the remote name for git@github.com:apache/activemq-artemis.git may be different.  Be sure to edit all references to the remote name.  In this case "activemq".
 
   [remote "origin"]
-        url = git@github.com:apache/activemq-6.git
+        url = git@github.com:apache/activemq-artemis.git
         fetch = +refs/heads/*:refs/remotes/origin/*
         fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
 
 
   # Add the Apache repository as a remote
-  git remote add upstream https://git-wip-us.apache.org/repos/asf/activemq-6.git
+  git remote add upstream https://git-wip-us.apache.org/repos/asf/activemq-artemis.git
 
   # Fetch
   git fetch --all