You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl --progress https://git-core.googlecode.com/files/git-1.9.0.tar.gz | tar xz
206
+
cd git-1.9.0/
207
+
./configure
208
+
make
209
+
make prefix=/usr/local install
210
+
211
+
Make sure Git is in your `$PATH`:
212
+
213
+
which git
214
+
215
+
You might have to logout and login again for the `$PATH` to take effect.
216
+
217
+
180
218
----------
181
219
182
220
## 2. Ruby
183
221
184
222
The use of ruby version managers such as [RVM](http://rvm.io/), [rbenv](https://github.com/sstephenson/rbenv) or [chruby](https://github.com/postmodern/chruby) with GitLab in production frequently leads to hard to diagnose problems. Version managers are not supported and we stronly advise everyone to follow the instructions below to use a system ruby.
185
223
186
-
Remove the old Ruby 1.8 if present:
224
+
Remove the old Ruby 1.8 package if present. Gitlab 6.7 only supports the Ruby 2.0.x release series:
187
225
188
226
yum remove ruby
189
227
228
+
Remove any other Ruby build if it is still present:
229
+
230
+
cd <your-ruby-source-path>
231
+
make uninstall
232
+
190
233
Download Ruby and compile it:
191
234
192
235
mkdir /tmp/ruby && cd /tmp/ruby
193
-
curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.0.tar.gz | tar xz
194
-
cd ruby-2.1.0
236
+
curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p451.tar.gz | tar xz
0 commit comments