remove git file code example
Example 1: remove git
rm -rf .git
Example 2: delete file from a branch git
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 3: git remove all pdf files
git rm -r */*.pdf
Example 4: how to remove stuff from git
git rm -r File-Name
Example 5: git delete file
// delete unused file.
// It will be placed on index area, and been deleted at next commit
git rm file-to-delete.ext
Example 6: git remove file
git rm [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch]
[--quiet] [--pathspec-from-file=<file> [--pathspec-file-nul]]
[--] [<pathspec>…]