mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 16:24:40 +04:00
7 lines
191 B
Bash
Executable file
7 lines
191 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# This is a script used in travis-ci to have latest git
|
|
set -ex
|
|
git clone git://github.com/git/git --depth 1 /tmp/git
|
|
pushd /tmp/git
|
|
make prefix=/tmp/git -j8 install
|
|
popd
|