In #git, you said you unintentionally added a directory that should have been ignored, so run
git rm --cached -r directory-name
to recursively remove the tree rooted at directory-name
from the index.
Don’t forget to update .gitignore
!
In #git, you said you unintentionally added a directory that should have been ignored, so run
git rm --cached -r directory-name
to recursively remove the tree rooted at directory-name
from the index.
Don’t forget to update .gitignore
!