sudo 권한이 없는 서버에서 git-lfs 사용하기
How to Use git-lfs
without sudo (sudo 권한이 없는 서버에서 git-lfs 사용하기)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(base) ~$ wget https://github.com/git-lfs/git-lfs/releases/download/v2.10.0/git-lfs-linux-386-v2.10.0.tar.gz
(base) ~$ tar -xvf git-lfs-linux-386-v2.10.0.tar.gz
README.md
CHANGELOG.md
git-lfs
install.sh
(base) ~$ chmod 755 install.sh
(base) ~$ vi ./install.sh # --> prefix 변수를 현재 권한받은 경로로 변경
(base) ~$ bash ./install.sh
Git LFS initialized.
(base) ~$ git lfs install
(base) ~$ git lfs pull
Finish
This post is licensed under CC BY 4.0 by the author.