GitHub 100M 이상의 파일 업로드 실패 해결

1328 단어
카탈로그
  • 질문
  • 해결
  • 참조
  • 문제


    push 에서 다음 문제가 발생했습니다.
    remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com.
    remote: error: Trace: f5b4ccf3739dd628391d2d522f1b1baf
    remote: error: See http://git.io/iEPt8g for more information.
    remote: error: File object-detection/model/resnet50_coco_best_v2.0.1.h5 is 145.59 MB; this exceeds GitHub's file size limit of 100.00 MB
    remote: error: File object-detection/model/yolo.h5 is 237.17 MB; this exceeds GitHub's file size limit of 100.00 MB
    

    분명히 말하지만 두 개의 파일이 100M의 제한을 초과했다.

    해결하다


    Git LFS 사용
  • 홈페이지에서https://git-lfs.github.com/git-lfs-windows-v2.8.0 다운로드.exe 및 설치.
  • bash 명령줄 입력 새로 열기git lfs install 설치
  • push의 큰 파일git lfs track "*.h5"을 추적하면 하나가 생성됩니다.gitattributes 파일.
  • 여기는 매우 중요합니다. 반드시 먼저 이전 단계에서 생성해야 합니다.gitattributes 파일을 창고에 업로드하면 3부작
  • 을 업로드합니다.
    git add .gitattributes
    git commit -m "add .gitattributes"
    git push origin master

    이때부터 당신의 큰 파일을 업로드할 수 있습니다.

    참고


    https://www.cnblogs.com/guxin/p/github-cannot-push-files-larger-than-100mb.html https://blog.csdn.net/tyro_java/article/details/53440666

    좋은 웹페이지 즐겨찾기