remove file from local 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 remove stuff from git
git rm -r File-Name
Example 3: delete file from a branch git
git rm file1.txt
git commit -m "remove file1.txt"