Remove .DS_Store files from a Git repo

I noticed while working on my new Kubernetes homelab that .DS_Store files were being committed to my Flux GitOps repo. Just documenting how I removed this and prevented future .DS_Store files from being committed. Remove existing .DS_Store files from the repository: find . -name .DS_Store -print0 | xargs…