I have this:
$ git checkout -- .
$ git pull
Updating 4411c31..db4498d
error: Your local changes to the following files would be overwritten by merge:
index.js
utils.js
Please commit your changes or stash them before you merge.
Aborting
I keep trying git checkout -- .
and it keeps giving me the same message. How do I obliterate the local changes here? I don't wish to keep my changes to index.js and utils.js.