Git Changes Not Added to Commit Error

Hi,
I am getting this error when committing changes with Git-

On Branch master Changes not staged for commit: modified: README.md deleted: pom.xml no changes added to commit
What could be causing it and how can I get rid of this? Thank you.

My project is here- https://glitch.com/~caramel-coal-airboat.

Run git add .

This will stage all of your files for committing.

1 Like

Thank you.