Reputation: 11
I created a file accidentally with undefined extension in GIT bash
. I have attached a screenshot:
git rm text,txt
but that is not working .Upvotes: 1
Views: 153
Reputation: 3415
As text,txt
is not tracked via git (see the git status
output)
you can delete it only via the normal del
command (resp. rm
on Unix systems), not via
git rm
.
Upvotes: 3