My Git repo contains files ending in a period which will not clone onto a PC. When I clone the repo onto a PC, these files automatically show up as deleted (and the deletions are automatically staged to be committed).
Is there a way to tell Git to ignore these files' absence and not to delete them from the repo? I've tried .gitignore, but that is for ignoring files which ARE present in the working directory and are NOT part of the repo, which is kind of exactly the opposite concept of what I'm looking for here.
Obviously I can unstage the deletions, but I don't want to have to do that every time I pull.