git delete file from repository 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: how to delete file from git command

git rm file1.txt
git commit -m "remove file1.txt"

Example 4: how to delete file from git command

git rm --cached file1.txt
git commit -m "remove file1.txt"

Example 5: git remove from folder

rm -rf .git

Example 6: delete file from a branch git

git push origin branch_name