DEV Community

Cover image for How to undo the most recent local commits in Git?
Ankur Singh
Ankur Singh

Posted on

1 1

How to undo the most recent local commits in Git?

Step 1:

git reset HEAD~ 
Enter fullscreen mode Exit fullscreen mode

Step 2:

# Make the changes as necessary
Enter fullscreen mode Exit fullscreen mode

Step 3:

git add .
Enter fullscreen mode Exit fullscreen mode

Step 4:

git commit -c ORIG_HEAD
Enter fullscreen mode Exit fullscreen mode

Top comments (0)