Last active
July 25, 2019 00:47
-
-
Save kristofk/83c76dd03f6f9c3c907695d0c8bb25ad to your computer and use it in GitHub Desktop.
Apply gitignore to already existing project.
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/sh | |
git rm -r --cached . | |
git add . | |
git commit -m "Fixed Gitignore" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment