Skip to content

Instantly share code, notes, and snippets.

@daleobrien
Created June 14, 2016 23:14
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daleobrien/bbe6dc92cf19e2391c0251a5ed2abab4 to your computer and use it in GitHub Desktop.
Save daleobrien/bbe6dc92cf19e2391c0251a5ed2abab4 to your computer and use it in GitHub Desktop.
install git 2.9 on OSX
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
@safareli
Copy link

you should run make configure after cd git

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment