remove files from git remote code example
Example 1: git remove folder remotely
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
Example 2: delete file from a branch git
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 3: git remove from folder
rm -rf .git
Example 4: gremove folder from git
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
Example 5: delete file from a branch git
git push origin branch_name