I'm currently working on my first MERN app. I have some issues regarding pushing my app to GitHub. My app file structure is as follows:
├───myApp
│ ├───server.js
│ ├───connection.js
│ ├───controls
│ ├───models
│ ├───client <-- create-react-app folder
I know that using create-react-app will run git init as well. So, if I try to get my full app on GitHub I will get a git repo inside a git repo:
Is there a way to remove git from the create-react-app and push my whole app to one repo?
Thanks

client/.git?