How to transfer finished project made in Visual Studio in Windows{ has 2 pages}?

hello guys!
Please help me.
How to transfer finished project made in Visual Studio{ has 2 pages} ? in windows.
I have finished the project " Login form" ( based on HTML and a little bit of JavaScript ) .

I don’t know how to transfer the finished project ( have been made in the Visual Studio) into GitHub { it has 2 pages: results.html and index.html}

Thank you ahead of time.

I assume you already have a GitHub account

  • create a new Repository
  • add Title, description etc
    License, Contributing, readme can be added later

For detailed steps for creating a repository follow GitHub Documentation

Add Files to the repository

  • On your repository page, click add files, upload files
  • Upload each of your files
  • commit the changes

More details→

Publish using GitHub pages…

  • Head over to the repository settings
  • In the GitHub pages section choose branch
  • It’ll display the url for your site

Full documentation ↓

2 Likes

Thank you for this straight answer. And yes, I have github.

Steps to follow:

  1. Install Git
  2. Sign in
  3. git remote add origin link-your-repository
  4. git add .
  5. git commit
  6. git push origin/master
1 Like

Let me clarify this answer

Download and install git from here

and then follow Git CLI documentation

1 Like

what is a better one Git or Github?

Git is a version control system that lets you manage and keep track of your source code history

GitHub is a cloud-based hosting service that lets you manage Git repositories.

1 Like

@jwilkins.oboe ,
SO for instance , I have been having hard time to find function to save this project ( it shows on the screen ) . I guess particular name for it is- “search solution explorer”. I have been messing with it- made it just worth .

So just to clarify, is your question how do I save my changes to github?

If so, then you need to have git installed first which based on this screen shot you do not have that installed yet.

I would refer to @mukeshgurpude’s answer on how to install git.

1 Like

you can think GitHub as the storage for your files, and Git is a version control system which tracks, changes in your project so that you can switch back to the previous version or track change in your files which led to the new bug in project.

With git, you can easily upload your changed files to the github as mentioned by @sauravk7077 in the post, So instead of manually uploading each time you changed your files, git does it for you…

Therefore, I don’t think git and GitHub as alternative of each other…

1 Like

It’s been all ready install like 5 monthes ago bofore I’ve been asking these questions, but thanks for clarification anyway.

Simplt enough. Thank you very much.