delete file git code example

Example 1: delete file from a branch git

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

Example 2: how to delete file from git command

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

Example 3: how to delete file from git command

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

Example 4: git remove all pdf files

git rm -r */*.pdf

Example 5: How to delete multiples files in Github

In the command-line, navigate to your local repository.
Ensure you are in the default branch:
git checkout master
The rm -r command will recursively remove your folder:
git rm -r folder-name
Commit the change:
git commit -m “Remove duplicated directory”
Push the change to your remote repository:
git push

Example 6: gremove folder from git

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

Tags: