JesusValera

Git: Reset last commit

git reset --soft, git reset --hard & git revert

 Found a typo? Edit me

When working with Git, it is possible that you committed some code by mistake. You can use git revert or git reset commands to have a cleaner Git history.

artenara landscape

Git revert

If you want to undo a commit without losing the history but creating a new commit undoing what you did, consider using git revert:

git revert HEAD~1

This command is a safer option in shared repositories.

Git reset

The git reset command moves the HEAD pointer to a previous point, removing intermediate commits.

Git reset soft

After running this command, the changes from the last commit will still be staged.

git reset --soft HEAD~1

Use cases:

Git reset hard

After running this command, the changes from the last commit will be removed.

git reset --hard HEAD~1

Use cases:

Git push origin

What if you pushed some commits into a remote branch and needed to push your latest changes regardless?

In that case, you can force the push using the flag -f. This command will override the history, which means the previous commits will be removed.

git push origin {branch} -f

Conclusion

Understanding when to use git reset --soft and git reset --hard is crucial for managing commits effectively.
Use --soft when you need to adjust your commits without losing changes and --hard when you need a complete reset. Always double-check before using --hard to avoid unintended data loss!

If you have doubts, or you are working in a branch with other people, it is preferable to use git revert instead.