I can not commit a change:
$ git commit
error: invalid object 100644 13da9eeff5a9150cf2135aaed4d2e337f97b8114 for \'spec/routing/splits_routing_spec.rb\'
err
In my case, it is the file in remote branch that is broken. I solved it by:
$ git remote rm origin$ git remote add origin $ git fetch origindevelop): $ git reset --hard origin/developThen everything goes back to normal.