github.com/psexton/git-lfs@v2.1.1-0.20170517224304-289a18b2bc53+incompatible/script/install-git-source (about)

     1  #!/usr/bin/env bash
     2  # Builds git from a given git ref. Used for CircleCI OSX builds
     3  
     4  cd git-source
     5  git checkout "$1"
     6  make --jobs=2
     7  make install
     8  cd ..