Created
June 14, 2016 23:14
-
-
Save daleobrien/bbe6dc92cf19e2391c0251a5ed2abab4 to your computer and use it in GitHub Desktop.
install git 2.9 on OSX
This file contains 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
cd ~/Downloads | |
wget https://www.openssl.org/source/openssl-1.0.2h.tar.gz | |
tar -xvf openssl-1.0.2h.tar.gz | |
cd openssl-1.0.2h | |
./Configure darwin64-x86_64-cc | |
make depend -j4 | |
sudo make install | |
cd ~/Downloads | |
git clone https://github.com/git/git | |
cd git | |
./configure --with-openssl=/usr/local/ssl/ | |
make -j 4 | |
sudo make install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you should run
make configure
aftercd git