SyntaxFix
Write A Post
Hire A Developer
Questions
The git will ignore the files matched .gitignore pattern after you add it to .gitignore.
But the files already existed in repository will be still in.
use git rm files_ignored; git commit -m 'rm no use files' to delete ignored files.
git rm files_ignored; git commit -m 'rm no use files'