Skip to content

Instantly share code, notes, and snippets.

@bleeckerj
Forked from crittelmeyer/git-ignore-all
Created April 12, 2017 14:36
Show Gist options
  • Select an option

  • Save bleeckerj/cb65070fcc7df9d06298aea23020f22b to your computer and use it in GitHub Desktop.

Select an option

Save bleeckerj/cb65070fcc7df9d06298aea23020f22b 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