I am trying to push my project folder to my repository on GitHub. The project has two separate folders, one for back end and one for front end. I gave the following commands from the main folder which contains these folders:
git init
git add .
git commit
git remote add origin https://github.com/<reponame>/Todo.git
git push -u origin master
The push was successful. It didn't give any errors.
upon git status
it shows,
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
But when I go to my repo, I could only see my back-end folder and its contents. The front-end folder icon appears with a arrow mark, but it has no content.
What could be wrong? How do I push both the folders together? Attached image for reference. enter image description herePlease help.