Created
September 24, 2025 14:10
-
-
Save dshadow/09d65d05d8b494b868b0a1fbb5556a54 to your computer and use it in GitHub Desktop.
Installing Git 2.33.8 into CentOS 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo yum install asciidoc xmlto docbook2X dh-autoreconf curl-devel expat-devel gettext-devel openssl-devel perl-devel zlib-devel | |
| sudo ln -s /usr/bin/db2x_docbook2texi /usr/bin/docbook2x-texi | |
| wget https://www.kernel.org/pub/software/scm/git/git-2.33.8.tar.gz | |
| tar -xf git-2.33.8.tar.gz | |
| cd git-2.33.8 | |
| ./configure --prefix=/usr/local --exec-prefix=/usr/local | |
| make all doc info | |
| sudo make install install-doc install-html install-info |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment