Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBen Bodenmiller <bbodenmiller@hotmail.com>2014-08-25 00:31:25 +0400
committerBen Bodenmiller <bbodenmiller@hotmail.com>2014-08-25 00:31:25 +0400
commitc8c2b49dfb327f1bde09f11d8301a63a613b6027 (patch)
tree4a420b7b90c674a530a0881df3c7f0b3b9ed20f7 /doc
parent8b1fe5f4ff1ca0ef975331a8508b51ba4df8e6c9 (diff)
remove extra cd's to GitLab installation folder
Diffstat (limited to 'doc')
-rw-r--r--doc/install/installation.md9
1 files changed, 1 insertions, 8 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 136898e5310..77ce78025d7 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -143,13 +143,11 @@ We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](da
# Clone GitLab repository
sudo -u git -H git clone https://gitlab.com/gitlab-org/gitlab-ce.git -b 7-2-stable gitlab
- # Go to gitlab dir
- cd /home/git/gitlab
-
**Note:** You can change `7-2-stable` to `master` if you want the *bleeding edge* version, but never install master on a production server!
### Configure It
+ # Go to GitLab installation folder
cd /home/git/gitlab
# Copy the example GitLab config
@@ -222,8 +220,6 @@ We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](da
**Note:** As of bundler 1.5.2, you can invoke `bundle install -jN` (where `N` the number of your processor cores) and enjoy the parallel gems installation with measurable difference in completion time (~60% faster). Check the number of your cores with `nproc`. For more information check this [post](http://robots.thoughtbot.com/parallel-gem-installing-using-bundler). First make sure you have bundler >= 1.5.2 (run `bundle -v`) as it addresses some [issues](https://devcenter.heroku.com/changelog-items/411) that were [fixed](https://github.com/bundler/bundler/pull/2817) in 1.5.2.
- cd /home/git/gitlab
-
# For PostgreSQL (note, the option says "without ... mysql")
sudo -u git -H bundle install --deployment --without development test mysql aws
@@ -234,9 +230,6 @@ We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](da
GitLab Shell is an SSH access and repository management software developed specially for GitLab.
- # Go to the GitLab installation folder:
- cd /home/git/gitlab
-
# Run the installation task for gitlab-shell (replace `REDIS_URL` if needed):
sudo -u git -H bundle exec rake gitlab:shell:install[v1.9.7] REDIS_URL=redis://localhost:6379 RAILS_ENV=production