Last active
December 28, 2015 15:19
-
-
Save tiagobbraga/7520712 to your computer and use it in GitHub Desktop.
Quando o .gitignore é esquecido dos primeiros commits, é possível fazer ele funcionar seguindo os seguintes passos.
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
git rm -r --cached . | |
git add . | |
git commit -m ".gitignore agora está funcionando" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment