Answers for "git unstage modified files"

3

how to unstage changes in git

#unstage a single file
git rm --cached <filePath> 

#unstage all staged files
git reset
Posted by: Guest on October-18-2019
1

git unstage a file

$ git reset -- README
Posted by: Guest on February-01-2021

Code answers related to "git unstage modified files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language