How to Revoke 'git add' Before 'git commit' Command?

By Hardik Savani January 31, 2023 Category : Git

Sometimes you need to undo your git file before you git comment command. Because you made a some wrong code and you did git add using "git add ." command then you think how to undo your code before git commit command. But you can do that using git reset command, if you need to undo all file Or you may need to undo just one then you can do using git reset command, you can see bellow command.

You can try following commands:

Command 1: For Specific File

git reset

Command 2: For All Files

git reset

I hope it can help you

Tags :
Shares