[Answer]-Git Ignore for metadata and other settings?

1👍

It seems those files have been added to the git repository already.

Are those “not staged files” or “untracked files”? In case of former, you remove files from repository using following commend.

git rm --cached

Leave a comment