how to delete existing git files code example
Example 1: how to delete file from git command
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 2: delete html file from git
git rm file1.txt
git rm --cached file1.txt
git commit -m "remove file1.txt"
git rm file1.txt