remove file git code example
Example 1: git remove folder remotely
git rm -r
git commit -m "Removed Folder"
git push origin master
Example 2: remove file history from git
git filter-branch
Example 3: delete file from a branch git
git rm
git commit -m "remove file1.txt"
Example 4: how to delete file from git command
git rm file1.txt
git commit -m "remove file1.txt"
Example 5: how to delete file from git command
git rm
git commit -m "remove file1.txt"
Example 6: how to remove stuff from git
git rm -r File-Name