git remove files code example

Example 1: git remove folder remotely

git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master

Example 2: git rm cached

$ git rm --cached filename

Example 3: how to delete file from git command

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

Example 4: git remove all pdf files

git rm -r */*.pdf

Example 5: how to remove stuff from git

git rm -r File-Name

Example 6: gremove folder from git

git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master

Tags:

Css Example