I've a repository that was migrated from Mercurial to Git in the past, and this repository is on BitBucket.
Now I need to move from BitBucket to GitHub, but GitHub saying to me that exists a big file, bigger than 100mb. I can find the branch of file with git log --all -- *MQ.rar
, but when I execute the command to remove the file git filter-branch -f --index-filter 'git rm -rf --cached --ignore-unmatch *MQ.rar' -- --all
, the file isn't removed.
I used the "Find Large Files" plugin on "Git Extensions", but the file isn't listed.
Maybe could be something with the file path that have acentuation?!
I don't know what can I do to solve this.