how to remove a file from working directory with git code example
Example 1: how to delete file from git command
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 2: remove directory from git without deleting
#for directory
git rm --cached -r myfile