Quick-reference guide for Git processes I use regularly.
To add new changes to your last commit without creating a separate one:
Stage your changes:
git add .
Amend the last commit:
git commit --amend
Edit the commit message in the editor if needed, then save and close.
Or use --no-edit to keep the original message:
git commit --amend --no-edit
<aside> ⭐
Note: If already pushed, force-push with git push --force (careful if others use the branch).
</aside>