반응형
Ubuntu에 LFS 설치하기
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt install git-lfs
Repository에 git lfs 적용
git lfs install
Repository에 git lfs 해제
git lfs uninstall
LFS 적용하기
git lfs rm --cached FILE
git lfs track FILE
git add FILE
git commit FILE -m "MESSAGE"
git push
LFS 관리 해제
git lfs untrack FILE
LFS 관리 완전 해제
git lfs untrack FILE
git rm --cached FILE
git add FILE
git commit FILE
git push
LFS 적용 확인
${REPO ROOT}/.gitattributes에 추가되어 있음.
LFS 리스트 확인
git lfs ls-files
LFS 적용된 Repository clone
git clone URL
git lfs pull
반응형
'개발, 웹, 블로그 > Linux 상식' 카테고리의 다른 글
[gdb] 환경변수 적용하여 gdb 돌리기 (0) | 2024.01.11 |
---|---|
[Git] Push되지 않은 Local Commit 확인하기 (0) | 2024.01.04 |
Docker Container 내부에서 자신의 Container ID 확인 방법 (0) | 2023.10.26 |