I am trying to delete a file after git push. I initially tried to git rm myFile, but this resulted in deleting the file locally and not deleting the file from my repo. When I click on my branch, I see
Conflict: Deleted on Source, Modified on Target
When I try to delete the cached file from the repo, my terminal does not see the file because it is deleted locally. The goal was to initially delete the file from my branch, and not locally. But the complete opposite happened.