You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2016/02/12 13:26:30 UTC

svn commit: r1730011 - /tomee/site/trunk/content/dev/source-code.mdtext

Author: rmannibucau
Date: Fri Feb 12 12:26:29 2016
New Revision: 1730011

URL: http://svn.apache.org/viewvc?rev=1730011&view=rev
Log:
removing develop branch references

Modified:
    tomee/site/trunk/content/dev/source-code.mdtext

Modified: tomee/site/trunk/content/dev/source-code.mdtext
URL: http://svn.apache.org/viewvc/tomee/site/trunk/content/dev/source-code.mdtext?rev=1730011&r1=1730010&r2=1730011&view=diff
==============================================================================
--- tomee/site/trunk/content/dev/source-code.mdtext (original)
+++ tomee/site/trunk/content/dev/source-code.mdtext Fri Feb 12 12:26:29 2016
@@ -12,10 +12,10 @@ You can browse the source code via the [
 
 If you intend to hack on TomEE then it is recommended that you create a [GitHub Account](https://github.com) and [fork](https://help.github.com/articles/fork-a-repo/) the TomEE repository so that you can submit pull requests (See below).
 
-If you just want to build the source version then you can download (aka clone) the sources of Apache TomEE with a GIT client from the following URL [https://git-wip-us.apache.org/repos/asf/tomee.git](https://git-wip-us.apache.org/repos/asf/tomee.git) - The 'develop' branch is the current development branch.
+If you just want to build the source version then you can download (aka clone) the sources of Apache TomEE with a GIT client from the following URL [https://git-wip-us.apache.org/repos/asf/tomee.git](https://git-wip-us.apache.org/repos/asf/tomee.git) - The 'master' branch is the current development branch.
 
 Performing the checkout from a command line using the GIT client (recommended) is as easy as executing the following command:
-> git clone -b develop [https://git-wip-us.apache.org/repos/asf/tomee.git](https://git-wip-us.apache.org/repos/asf/tomee.git) tomee
+> git clone [https://git-wip-us.apache.org/repos/asf/tomee.git](https://git-wip-us.apache.org/repos/asf/tomee.git) tomee
 
 If you want to checkout a specific branch then you can just change that in the command:
 
@@ -36,11 +36,8 @@ Note: This method does not require the G
 
 We will be using the [Gitflow Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) from day one. Please read and understand how this works.
 
-<span style="color: rgb(128,0,0);">GIT pull requests will only be accepted on the **develop** branch</span>.
 See [here](https://help.github.com/articles/using-pull-requests/) for information on pull requests. 
 
-The [Gitflow Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) workflow is basically the same as the [Feature Branch Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow) but instead of using *master* everyone should work off the *develop* branch.
-
 The official Apache Committer documentation can be found [here](https://git-wip-us.apache.org/#committers-getting-started)
 
 <a name="SourceCode-Continuousintegration"></a>