remove file from branch git code example
Example 1: git remove folder remotely
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
Example 2: how to delete file from git command
git rm --cached file1.txt
git commit -m "remove file1.txt"