This closes #2535
This commit is contained in:
commit
3a61d2c799
|
@ -51,7 +51,7 @@ Before starting make sure you clone a brand new git as follows as the release pl
|
||||||
```sh
|
```sh
|
||||||
git clone git://github.com/apache/activemq-artemis.git
|
git clone git://github.com/apache/activemq-artemis.git
|
||||||
cd activemq-artemis
|
cd activemq-artemis
|
||||||
git remote add upstream https://git-wip-us.apache.org/repos/asf/activemq-artemis.git
|
git remote add upstream https://gitbox.apache.org/repos/asf/activemq-artemis.git
|
||||||
```
|
```
|
||||||
|
|
||||||
If your git `user.email` and/or `user.name` are not set globally then you'll need to set these on the newly clone
|
If your git `user.email` and/or `user.name` are not set globally then you'll need to set these on the newly clone
|
||||||
|
@ -222,7 +222,7 @@ In case you want to give it a try with the maven repo on examples:
|
||||||
http://activemq.apache.org/artemis/docs/latest/hacking-guide/validating-releases.html
|
http://activemq.apache.org/artemis/docs/latest/hacking-guide/validating-releases.html
|
||||||
|
|
||||||
The source tag:
|
The source tag:
|
||||||
https://git-wip-us.apache.org/repos/asf?p=activemq-artemis.git;a=tag;h=refs/tags/<version>
|
https://gitbox.apache.org/repos/asf/activemq-artemis.git;a=tag;h=refs/tags/<version>
|
||||||
|
|
||||||
I will update the website after the vote has passed.
|
I will update the website after the vote has passed.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Working with the Code
|
# Working with the Code
|
||||||
|
|
||||||
While the canonical Apache ActiveMQ Artemis git repository is hosted on Apache hardware at https://git-wip-us.apache.org/repos/asf?p=activemq-artemis.git
|
While the canonical Apache ActiveMQ Artemis git repository is hosted on Apache hardware at https://gitbox.apache.org/repos/asf/activemq-artemis.git
|
||||||
contributors are encouraged (but not required) to use a mirror on GitHub for collaboration and pull-request review
|
contributors are encouraged (but not required) to use a mirror on GitHub for collaboration and pull-request review
|
||||||
functionality. Follow the steps below to get set up with GitHub, etc.
|
functionality. Follow the steps below to get set up with GitHub, etc.
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ let's assume these ref/repo associations already exist as described in the [Work
|
||||||
|
|
||||||
1. Add the canonical Apache repository as a remote. Here we call it `apache`.
|
1. Add the canonical Apache repository as a remote. Here we call it `apache`.
|
||||||
|
|
||||||
$ git remote add apache https://git-wip-us.apache.org/repos/asf/activemq-artemis.git
|
$ git remote add apache https://gitbox.apache.org/repos/asf/activemq-artemis.git
|
||||||
|
|
||||||
1. Add the following section to your <artemis-repo>/.git/config statement to fetch all pull requests sent to the GitHub
|
1. Add the following section to your <artemis-repo>/.git/config statement to fetch all pull requests sent to the GitHub
|
||||||
mirror. We are using `upstream` as the remote repo name (as noted above), but the remote repo name may be different
|
mirror. We are using `upstream` as the remote repo name (as noted above), but the remote repo name may be different
|
||||||
|
|
4
pom.xml
4
pom.xml
|
@ -193,8 +193,8 @@
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git:http://git-wip-us.apache.org/repos/asf/activemq-artemis.git</connection>
|
<connection>scm:git:https://gitbox.apache.org/repos/asf/activemq-artemis.git</connection>
|
||||||
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/activemq-artemis.git</developerConnection>
|
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/activemq-artemis.git</developerConnection>
|
||||||
<url>https://fisheye6.atlassian.com/browse/~br=master/activemq-artemis-git</url>
|
<url>https://fisheye6.atlassian.com/browse/~br=master/activemq-artemis-git</url>
|
||||||
<tag>1.0.0-SNAPSHOT</tag>
|
<tag>1.0.0-SNAPSHOT</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
|
@ -26,7 +26,7 @@ set -e
|
||||||
#
|
#
|
||||||
# - origin being your github fork:: https://github.com/YOU/activemq-artemis.git
|
# - origin being your github fork:: https://github.com/YOU/activemq-artemis.git
|
||||||
# - upstream being the github fork for apache:: https://github.com/apache/activemq-artemis.git
|
# - upstream being the github fork for apache:: https://github.com/apache/activemq-artemis.git
|
||||||
# - apache being the apache origin:: https://git-wip-us.apache.org/repos/asf/activemq-artemis.git
|
# - apache being the apache origin:: https://gitbox.apache.org/repos/asf/activemq-artemis.git
|
||||||
#
|
#
|
||||||
# Notice: you should add +refs/pull/*/head to your fetch config on upstream
|
# Notice: you should add +refs/pull/*/head to your fetch config on upstream
|
||||||
# as specified on https://github.com/apache/activemq-artemis/blob/master/docs/hacking-guide/en/maintainers.md
|
# as specified on https://github.com/apache/activemq-artemis/blob/master/docs/hacking-guide/en/maintainers.md
|
||||||
|
|
Loading…
Reference in New Issue