Which command would remove a file named wrongfile from the current branch of a repository, the index, and working files?
⠀
git rm wrongfile git commit -m "Removed file"
git forget -rf wrongfile git commit -m "Removed file"
git untrack -rf wrongfile git commit -m "Removed file"
git rm --cached wrongfile git commit -m "Removed file"