最后活跃于 1747851123

修订 c2f4e4d5aaa736e8e2c79a64ff6e1fefc9167465

note.md 原始文件

For re-doing the repo, to take into account your changes to the .gitignore

Remove Stuff that should ignored. (like class files (java) or .pyc files (python)) Don't Store node_modules either!

The series of commands below will remove all of the items from the Git Index (not from the working directory or local repo), and then updates the Git Index, while respecting git ignores. PS. Index = Cache

First:

git rm -r --cached . 
git add .

Then:

git commit -m "Remove ignored files"