Common Git Workflows

Quick-reference guide for Git processes I use regularly.

Combine New Changes with the Last Commit (Amend)

To add new changes to your last commit without creating a separate one:

  1. Stage your changes:

    git add .
    
  2. Amend the last commit:

    git commit --amend
    

<aside> ⭐

Note: If already pushed, force-push with git push --force (careful if others use the branch).

</aside>