github.com/x-oss-byte/git-lfs@v2.5.2+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 ..