Please squash your commits, and don't abbreviate your last name:
```sh # Squash the last commit into the second-to-last commit git rebase -i HEAD^^ # when prompted, change the last commit from "pick" to "squash"
# Fix commit author git config --global user.name "Enol Puente" git commit --amend --reset-author
# Resubmit git push --force ```
You might want to read the [Git Wine Tutorial](https://wiki.winehq.org/Git_Wine_Tutorial), although it has approximately the same information as any other Git tutorial. Avísame si quieres ayuda en castellano.