Answers for "how to unstage changes in git"

2

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

git unstage file\

# unstage file before commit
git rm --cached <file_name>
Posted by: Guest on December-18-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language