github.com/stffabi/git-lfs@v2.3.5-0.20180214015214-8eeaa8d88902+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 ..