Remove staged files
Remove staged files
If you have added files using git add .
and you want to remove a single file then use this:
git reset filename.txt
Or if you want to remove all the staged files then use:
git reset
If you have added files using git add .
and you want to remove a single file then use this:
git reset filename.txt
Or if you want to remove all the staged files then use:
git reset
Leave a comment