やりたいこと・解決したいこと
git で push すると
remote: Resolving deltas: 100% (33/33), completed with 19 local objects. remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com. remote: error: Trace: 252ae298a0c7d6c0c5804fa8c39a9076 remote: error: See http://git.io/iEPt8g for more information. remote: error: File [ファイル名] is 180.62 MB; this exceeds GitHub's file size limit of 100.00 MB
このようなエラーが出たので調べたところ
push できる容量がオーバーしているとのことだったので
https://qiita.com/kanaya/items/ad52f25da32cb5aa19e6
こちらの記事を参考に git-lfs をインストールしてもう一度 push して見たのですが同じエラーが出てうまく行きませんでした。
試したこと
git-lfs をインストールしてから
git reset --soft HEAD^ // コミットの取り消し git lfs track {LARGE_FILE} // ここの波括弧の中にさっきのエラーがでていたファイルを指定 Tracking にファイルが登録された git add .gitattributes // 登録したファイルを add git add // add git commit // コミット git push origin master // プッシュ
この順番で試したのですがうまく行きませんでした。
どなたかご教示いただければと思います。
お願い致します。
git-lfs をインストールしても うまくいかないということですが、 どの様なメッセージが出ているのでしょうか?

インストールしてからも変わらず
```
remote: Resolving deltas: 100% (33/33), completed with 19 local objects.
remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com.
remote: error: Trace: 252ae298a0c7d6c0c5804fa8c39a9076
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File [ファイル名] is 180.62 MB; this exceeds GitHub's file size limit of 100.00 MB
```
こちらのエラーメッセージが出てきます。
`git reset --soft HEAD^ `で問題のでかいファイルが最初にcommitされたcommitの一つ前のcommitに戻れていますか?

はい
(ブランチ名+)になっているので戻れていると思いますが、戻れていませんでしょうか??
