Closed PatricNox closed 5 years ago
Fixes: https://github.com/Evie-Skinner18/happy_hacktoberfest_19/issues/197
Problem lays in adding .gitignore after already comitting files to the ignored directory, making the .gitignore unfunctional.
This is solved by git rm -r --cached .vscode and then committing the folder updates.
git rm -r --cached .vscode
(this also creates a new issue for even bigger beginners where they have to learn .gitignore and clear up lines that's never affecting. ;) )
Ah ok thanks for your help @PatricNox !
Fixes: https://github.com/Evie-Skinner18/happy_hacktoberfest_19/issues/197
Problem lays in adding .gitignore after already comitting files to the ignored directory, making the .gitignore unfunctional.
This is solved by
git rm -r --cached .vscode
and then committing the folder updates.