-
-
Save bleeckerj/cb65070fcc7df9d06298aea23020f22b to your computer and use it in GitHub Desktop.
Shell script that adds all untracked files to .gitignore
This file contains hidden or 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