Git LFS

weixin_33935777發表於2018-03-17

github 單檔案超過 100M 大檔案上傳解決

注:目前 Git LFS的總儲存量為1G左右,超過需要付費。

  • 安裝,見官網 詳細步驟
  • 只需要設定一次 git lfs install
  • git lfs track "*.pdf" // 設定指定檔案型別

針對 .framework 需要指定路徑 git lfs track "Test/Test1/Test.framework"
如果 .framework 在根目錄下可以用 git lfs track "*.framework/*"
sourcetree 操作: -> 倉庫 -> Git LFS -> 新增型別內容為 track 後面的型別或路徑

  • git add .gitattributes
  • commit 後,執行 git lfs ls-files 可列舉出當前被檢測出的檔案
  • push ,可能報 The remote end hung up unexpectedly(解決方法:git config --global http.postBuffer 524288000

碼雲不支援 Git LFS, GitLab 支援大檔案上傳

相關文章