Skip to content

Instantly share code, notes, and snippets.

@ishidur
Last active September 11, 2018 05:46
Show Gist options
  • Save ishidur/0ee114a56f9b4736c09e71d841b00902 to your computer and use it in GitHub Desktop.
Save ishidur/0ee114a56f9b4736c09e71d841b00902 to your computer and use it in GitHub Desktop.
.gitignore の設定を反映させる #git #tips #shell
git rm -r --cached .
git add .
git commit -m ".gitignore is now working"

all

git rm -r --cached . && git add . && git commit -m ".gitignore is now working"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment