You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:29:07 UTC

[33/50] brooklyn-docs git commit: Make "git clone" the first option for downloading examples + minor stylistic fixes

Make "git clone" the first option for downloading examples + minor stylistic fixes


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/ce8f2d5f
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/ce8f2d5f
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/ce8f2d5f

Branch: refs/heads/0.4.0
Commit: ce8f2d5fdbff7d7ef364b76730a1bb77265c1cee
Parents: 3410ac6
Author: Cosmin Dumitrache <co...@cloudsoftcorp.com>
Authored: Tue Jul 31 17:29:57 2012 +0100
Committer: Cosmin Dumitrache <co...@cloudsoftcorp.com>
Committed: Tue Jul 31 17:29:57 2012 +0100

----------------------------------------------------------------------
 docs/start/download.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/ce8f2d5f/docs/start/download.md
----------------------------------------------------------------------
diff --git a/docs/start/download.md b/docs/start/download.md
index e9ad892..fc2cab3 100644
--- a/docs/start/download.md
+++ b/docs/start/download.md
@@ -40,24 +40,24 @@ Just download your preferred flavour and add it to your classpath.
 <a name="examples"></a>
 ## Examples
 
-You can download the most recent stable examples from [here](https://github.com/brooklyncentral/brooklyn-examples/tarball/master).
-
-If you prefer to do this from the command-line, use:
+You can clone the most recent stable examples from the [brooklyn-examples git repository](http://github.com/brooklyncentral/brooklyn-examples):
 
 {% highlight bash %}
-% curl --location https://github.com/brooklyncentral/brooklyn-examples/tarball/master -o brooklyn-latest.tgz
+% git clone https://github.com/brooklyncentral/brooklyn-examples.git
 {% endhighlight %}
 
-If you are looking for a specific version (versions of the examples are aligned with Brooklyn non-snapshot releases) try the following command:
+You can also download them from [here](https://github.com/brooklyncentral/brooklyn-examples/tarball/master).
+
+If you prefer to do this from the command-line, use:
 
 {% highlight bash %}
-% curl --location https://github.com/brooklyncentral/brooklyn-examples/tarball/0.4.0-M2 -o brooklyn-0.4.0-M2.tgz
+% curl -L https://github.com/brooklyncentral/brooklyn-examples/tarball/master -o brooklyn-latest.tgz
 {% endhighlight %}
 
-You can also clone the [brooklyn-examples git repository](http://github.com/brooklyncentral/brooklyn-examples):
+If you are looking for a specific version (versions of the examples are aligned with Brooklyn non-snapshot releases) try the following command:
 
 {% highlight bash %}
-% git clone https://github.com/brooklyncentral/brooklyn-examples.git
+% curl -L https://github.com/brooklyncentral/brooklyn-examples/tarball/0.4.0-M2 -o brooklyn-0.4.0-M2.tgz
 {% endhighlight %}
 
 Once you have the examples you can build them with [maven (v3)]({{site.url}}/dev/build/).