Home > Net >  How to upload foders using Github desktop
How to upload foders using Github desktop

Time:07-10

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.

my Project Folder:
my Project Folder

my GitHub repository:
my GitHub repository

CodePudding user response:

First, in your file explorer, enable enter image description here

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.

  • Related