Search code examples
gitgit-commit

How to combine new changes with previous commit in git


I made a commit A and now have additional changes that if I committed would give me two commits A & B.

What is the most efficient way to combine the new changes with the ones from the previous commit so that I end up with just one commit?


Solution

  • git add -u && git commit --amend

    This will stage all local changes and then use them to rewrite the previous commit. Note that if you've already pushed the previous commit then this is a really bad idea.