git lfs
Atlassianthe article을 참조하여
Git LFS does this by replacing large files in your repository with tiny pointer files. During normal usage, you'll never see these pointer files as they are handled automatically by Git LFS
설령 기존의 큰 파일, 예를 들어 나의 데이터베이스가 있다 하더라도 응용하기 쉽다.
# for the very first time, run install
git lfs install
# add the large files you want to track
git lfs track '*.sqlite3'
# without argument, you can see the patterns being tracked
git lfs track
# show the files being tracked
git lfs ls-files
실행 git lfs track '*.sqlite3'
후에 자동으로 파일 .gitattributes
을 만들어서 모드를 기록합니다.그리고 큰 서류를 제출하고gitattributes에서github까지, 완성.
다른 사람들이git를 원격으로 환매하려고 시도할 때, 운행
git lfs install
(1차만) 후, 그들은 평소와 같이git pull
할 수 있다.참조:
데이터베이스에 더 많은 데이터를 추가한 후github는 lfs를 사용해도 한계에 도달했다.😓
데이터베이스를 로컬 파일에 저장합시다.
(^._.^)ノ
Reference
이 문제에 관하여(git lfs), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/chanyayun/git-lfs-1fgo텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)