Git issues with Ember CLI

Hi everyone! This one is probably an easy one:

I have a project here. I have the rails back end split into a folder and the ember CLI front end split into another folder. For some reason I can’t commit anything that happens in the ember folder. I’ve removed the .git file but it’s still considered a “submodule” on github. Anyone know why?

edit:

I think I’ve fixed it. These were the steps:

git rm --cached frontend

git add -A

git commit -m ".."

git push origin master

I guess that fixed it. Even though when I ran git submodule uninit . it said there weren’t any. Fun!