Evie-Skinner18 / happy_hacktoberfest_19

A fun website built to celebrate open source collaboration. Go ahead and create something!
18 stars 114 forks source link

Clear .vscode from git catch #199

Closed PatricNox closed 5 years ago

PatricNox commented 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.

PatricNox commented 5 years ago

(this also creates a new issue for even bigger beginners where they have to learn .gitignore and clear up lines that's never affecting. ;) )

Evie-Skinner18 commented 5 years ago

Ah ok thanks for your help @PatricNox !