File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,33 @@ To remove this alias in the future:
188
188
189
189
rm -i /usr/bin/editor
190
190
191
+
192
+ ### Install Git from Source (optional)
193
+
194
+ Remove the system Git
195
+
196
+ yum -y remove git
197
+
198
+ Install the pre-requisite files for Git compilation
199
+
200
+ yum install zlib-devel perl-CPAN gettext curl-devel expat-devel gettext-devel openssl-devel
201
+
202
+ Download and extract Git 1.9.0
203
+
204
+ mkdir /tmp/git && cd /tmp/git
205
+ 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
+
191
218
----------
192
219
193
220
## 2. Ruby
@@ -349,6 +376,7 @@ If you see the following:
349
376
350
377
Your password has been accepted successfully and you can type \q to quit.
351
378
379
+
352
380
----------
353
381
## 6. GitLab
354
382
You can’t perform that action at this time.
0 commit comments