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
# update gitignore | |
git rm -r --cached . | |
git add . | |
git commit -m ".gitignore is now working" | |
# fetch over write from remote | |
git fetch origin master | |
git reset --hard FETCH_HEAD | |
git clean -df |