@htilburgs that says you changed a file in the module, which you aren’t supposed to do.

git status would have shown the changed file(s)
git diff would have shown you the exact changes

git reset --hard HEAD

will force all the changes to be lost and the repo restored to the last commit
(and allow you to git pull)