Skip to content

Instantly share code, notes, and snippets.

View stoodder's full-sized avatar

Rick Allen stoodder

  • RA Consulting, LLC
  • Milwaukee
View GitHub Profile
@joshdholtz
joshdholtz / update_gitignore.sh
Last active October 14, 2025 16:34
Remove files from updated .gitignore
git ls-files -ci --exclude-standard -z | xargs -0 git rm --cached
### Alias in .zshrc or .bashrc because too hard to remember
# alias ungit="git ls-files -ci --exclude-standard -z | xargs -0 git rm --cached"