Answers for "how to unmerge changes in git"

11

how to remove file changes in git

git clean -df
git checkout -- .
Posted by: Guest on May-23-2020
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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language