how to remove file from git code example
Example 1: delete git
rm -rf .git
Example 2: how to remove file changes in git
git clean -df
git checkout -- .
Example 3: how to delete file from git command
git rm file1.txt
git commit -m "remove file1.txt"
Example 4: how to delete file from git command
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 5: git remove all pdf files
git rm -r */*.pdf
Example 6: how to remove stuff from git
git rm -r File-Name