🔖

[エラー解決] GitでLarge filesエラー(GH001: Large files detected.)

2023/10/01に公開

GitでLarge filesエラー

誤って大きいキャッシュファイルをコミットしようとしたために大きなファイルをコミットしようとするなとエラーが出た

this exceeds GitHub's file size limit of 100.00 MB
remote: error: GH001: Large files detected. You may want to try Git Large File Storage

解決方法

1.gitのキャッシュを削除

  • git rm -r --cached .
    git add .
    git commit -m "<コミットメッセージ>"
    

2.最後のコミットをリセット

git reset HEAD~1

3.再構築

git pull --rebase

output

Successfully rebased and updated refs/heads/feature/XXXX

解決

リポジトリの中身を見て無事にキャッシュが削除されていることを確認して無事に解決した

GitHubで編集を提案

Discussion