Git Remove Last Commit from Local Example

By Hardik Savani November 5, 2023 Category : Git

Git is distributed version control system that is a awesome. when ever you are working with git repository. if you did commit your code in your local system by mistake, then if you want to remove last commit from your project. so let's see following example:

Example Command:

git add .

git commit -m "change for test"

git reset --soft HEAD~

I hope it can help you...

Tags :
Shares