how to delete a file with 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 file

git rm [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch]
	  [--quiet] [--pathspec-from-file=<file> [--pathspec-file-nul]]
	  [--] [<pathspec>]

Example 5: delete file from a branch git

git push origin branch_name