git bash delete file code example
Example 1: how to delete file from git command
git rm file1.txt
git commit -m "remove file1.txt"
Example 2: how to delete file from git command
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