delete files on git code example
Example 1: how to delete file from git command
git rm file1.txt
git commit -m "remove file1.txt"
Example 2: gremove folder from git
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
Example 3: git delete file
// delete unused file.
// It will be placed on index area, and been deleted at next commit
git rm file-to-delete.ext