Skip to content

Instantly share code, notes, and snippets.

@crittelmeyer
Last active April 12, 2017 14:36
Show Gist options
  • Save crittelmeyer/1181ffc1d6cb7dc63c3e to your computer and use it in GitHub Desktop.
Save crittelmeyer/1181ffc1d6cb7dc63c3e to your computer and use it in GitHub Desktop.
Shell script that adds all untracked files to .gitignore
#!/bin/bash -e
git status -s | grep -e "^??" | cut -c 4- >> .gitignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment