how to delete files form github code example
Example 1: delete file from a branch git
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 2: delete file from a branch git
git push origin branch_name
git rm --cached file1.txt
git commit -m "remove file1.txt"
git push origin branch_name