From 69a781cab3bf47fa1600bac52c48bc0f6b2ea29e Mon Sep 17 00:00:00 2001 From: Sytse Sijbrandij Date: Fri, 13 Sep 2013 17:06:08 +0200 Subject: [PATCH 1/3] More information in readme. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fe1e75780..3f4f0b7d4 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,15 @@ Possible Cases: * 1 __GitLab CI__ and N __GitLab CI Runner__ instances on different machines * 1 __GitLab CI__ and N __GitLab CI Runner__ instances on local machines - ![screen](https://raw.github.com/gitlabhq/gitlab-ci/master/app/assets/images/arch.jpg) +The runner runs the line below and then runs the commands in your projects settings +cd /gitlab-ci-runner/tmp/builds && git clone git@gitlab_server_fqdn:group/project.git project-1 && cd project-1 && git checkout master + +For more information see: +[Announcing GitLab CI 3.0](http://blog.gitlab.org/announcing-gitlab-ci-3.0/) +[Integrating GitLab CI With GitLab to Enable Distributed Builds](http://blog.gitlab.org/integrating-gitlab-ci-with-gitlab/) + ### Installation * [Installation and setup guide](https://github.com/gitlabhq/gitlab-ci/blob/master/doc/installation.md) From 6fad6c6e23ab18df8e54d083c57529ff20ea245b Mon Sep 17 00:00:00 2001 From: Sytse Sijbrandij Date: Fri, 13 Sep 2013 17:09:51 +0200 Subject: [PATCH 2/3] Split the links. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3f4f0b7d4..d0fc6a275 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ cd /gitlab-ci-runner/tmp/builds && git clone git@gitlab_server_fqdn:group/projec For more information see: [Announcing GitLab CI 3.0](http://blog.gitlab.org/announcing-gitlab-ci-3.0/) +and [Integrating GitLab CI With GitLab to Enable Distributed Builds](http://blog.gitlab.org/integrating-gitlab-ci-with-gitlab/) ### Installation From 76f862ee94a5e16f62847a9d83d6feedd4ed5113 Mon Sep 17 00:00:00 2001 From: Sytse Sijbrandij Date: Fri, 13 Sep 2013 17:10:54 +0200 Subject: [PATCH 3/3] Quote command. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d0fc6a275..94db8b35e 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,8 @@ Possible Cases: ![screen](https://raw.github.com/gitlabhq/gitlab-ci/master/app/assets/images/arch.jpg) The runner runs the line below and then runs the commands in your projects settings -cd /gitlab-ci-runner/tmp/builds && git clone git@gitlab_server_fqdn:group/project.git project-1 && cd project-1 && git checkout master + + cd /gitlab-ci-runner/tmp/builds && git clone git@gitlab_server_fqdn:group/project.git project-1 && cd project-1 && git checkout master For more information see: [Announcing GitLab CI 3.0](http://blog.gitlab.org/announcing-gitlab-ci-3.0/)