Skip to content

Instantly share code, notes, and snippets.

@daleobrien
Created June 14, 2016 23:14
Show Gist options
  • Select an option

  • Save daleobrien/bbe6dc92cf19e2391c0251a5ed2abab4 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

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