This means that some of the changes you made are organized for fixing, and some are not.
You can check what is delivered if you run
git diff --staged -- README.md
and check what is not installed by running
git diff -- README.md
Most version control systems typically save changes between two states. The git method works, while you make several changes to the file, you will need to add / tag each of them to be part of the same aka a commit change set. When you use git add , this is done automatically.
However, this is not the only way to add all your individual changes (hunks) to your index. You can, for example, make several changes to the same file and commit them in different commits or add only certain changes to the commit. For example. to explicitly add some changes to your "index", but not others, you can do this using git add -p to add only some "hunks" (groups) of changes, and not the entire list of changes themselves.
What happened is that the changes you made in README.md before ( git add ) will be displayed in order and any changes you made after t24> will be displayed as uninstalled, as you received above.
Manquer
source share