Tuesday, October 20, 2015

git commit error due to large files

I couldn't commit apparently because something was cashed. I found this workaround
git stash save --keep-index
git filter-branch -f --index-filter 'git rm --cached --ignore-unmatch  path2file' 

No comments: