"git reset" moves files from the "staged for commit" area (the index) back to the "unstaged" area. It does not delete or modify your actual changes in the working directory.
Source code viewer
# Unstage all files: git reset # Unstage a specific file: git reset <file>Programming Language: Bash