> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codecrafters.io/llms.txt
> Use this file to discover all available pages before exploring further.

# No changes found

> Instructions on resolving error related to no changes found

When pushing your changes, you might see a message indicating that no changes were found.

<Frame>
  <img src="https://mintcdn.com/codecrafters/qGKwe-_AIUAS3RUS/img/no-changes-found-error.png?fit=max&auto=format&n=qGKwe-_AIUAS3RUS&q=85&s=f9c8b9e92ad925481e03aa6d60911739" width="1458" height="312" data-path="img/no-changes-found-error.png" />
</Frame>

This most likely means that you haven't run `git add .` before running `git commit` and `git push`.

Make sure to run all these three commands in order:

```sh theme={null}
git add .
git commit -m "<your_commit_message>"
git push origin master
```
