Utoljára aktív 1715189857

Revízió a2124514e1bff6f3df1b9bb0f1fe64277f79d950

note.md Eredeti

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

Remove Stuff that should ignored.

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"