remove from staging git code example
Example 1: how to remove all files from staging area git
git rm --cached -r .
Example 2: git remove file from staging
git rm --cached FILE.NAME
Example 3: remove file from stage git
git rm --cached <file>
Example 4: remove frmo staging git
git reset HEAD -- filename
Example 5: remove from staging git
git rm --cached -r
--cached tells it to remove the paths from staging and the index without
removing the files themselves and -r operates on directories recursively.
Example 6: remove from staging git
git rm --cached -r
--cached tells it to remove the paths from staging and the index without
removing the files themselves and -r operates on directories recursively.