8 Jan
2024
8 Jan
'24
3:43 p.m.
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. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4801#note_56910