|
|
# Introduction
|
|
|
|
|
|
This document describes how to install the git-lfs extension on a client machine. [These instructions](https://github.com/git-lfs/git-lfs) are probably what you are looking for.
|
|
|
|
|
|
If you're running a system for which no pre-built binary exists, you'll need to build from source.
|
|
|
|
|
|
# CentOS 7 ppc64le
|
|
|
|
|
|
Install a newer version of the Go language:
|
|
|
|
|
|
```
|
|
|
sudo mkdir -p /opt/golang
|
|
|
curl https://storage.googleapis.com/golang/go1.9.1.linux-ppc64le.tar.gz | sudo tar -C /opt/golang -zxf -
|
|
|
sudo mv /opt/golang/go /opt/golang/go-1.9.1
|
|
|
export PATH=/opt/golang/go-1.9.1/bin:${PATH}
|
|
|
```
|
|
|
|
|
|
Install git-lfs
|
|
|
|
|
|
```
|
|
|
curl https://codeload.github.com/git-lfs/git-lfs/tar.gz/v2.3.3 | tar zxf -
|
|
|
cd git-lfs-2.3.3/
|
|
|
./script/bootstrap
|
|
|
sudo cp ./bin/git-lfs /usr/local/bin
|
|
|
```
|
|
|
|
|
|
Cleanup step:
|
|
|
|
|
|
```
|
|
|
sudo rm -rf /opt/golang
|
|
|
rm -rf git-lfs-2.3.3
|
|
|
``` |
|
|
\ No newline at end of file |