delete file from branch in 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: delete file from a branch git
git push origin branch_name
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
git push origin branch_name