Last active
April 12, 2017 14:36
-
-
Save crittelmeyer/1181ffc1d6cb7dc63c3e to your computer and use it in GitHub Desktop.
Shell script that adds all untracked files to .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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