I'm very new to Github and I'm trying to create a new repository that contains 2 folders ("server
" and "utalk
").
The "utalk
" folder is my front-end and the "server
" folder is my backend.
But when I use Github Desktop, it seems I only push the server
folder and cant push the utalk
folder.
I don't know how to push all my folders.
CodePudding user response:
First, in your file explorer, enable
Then check if you see a .git
in the utalk
folder. That would make it a nested git repository, mostly ignored by your parent folder.
Switch to command-line and do a git status
in utalk-project
to know more about your current situation.