I commit the file with this.
git add .
git commit -am 'all'
However after this, I notices that I added the wrong file(too big).
So put this line in .gitignore
*.sql
However after this *.sql file is not removed from git.
And git push origin master takes too long time.
What can I fix for this?