1

I am new to coding area, and started learning coding since last few days; I have completed some projects.

But, when I want to upload and live it on GitHub platform, it is just showing the repository name when going to the created link.

I manually uploaded 1 file of CSS and HTML each, its showing problem.

Adrian Mole
  • 49,934
  • 160
  • 51
  • 83

1 Answers1

0

If you have your projects set up as nested Git repository inside your main local repository, then you would see those subrespo root folder as links (gitlinks, a special entry in the index) indeed.

myProjects
  .git/
  project1
    .git/
  project2
   .git/
  ...

Make sure to create one GitHub repository per project.

You can do so from your workstation, using the GitHub CLI gh, with gh repo create:

# create a remote repository from the current directory
gh repo create my-project --source=.
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250