Hiroki Naganuma

よく使うコマンド

100MB 以上のファイルをコミットをしちゃって履歴から削除

git filter-branch -f --index-filter 'git rm --ignore-unmatch filename' HEAD

100MB ディレクトリ版

git filter-branch -f --index-filter 'git rm -rf --ignore-unmatch dirname' HEAD