Answers for "git remov file from staging"

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
0

how to remove all files from staging area git

git rm --cached -r .
Posted by: Guest on July-28-2020

Code answers related to "git remov file from staging"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language