I am new to Git, I have a project that I did locally, and I want it on GitHub in a repository.
How can I achieve this, because GitHub only has 'Upload Files', not an upload folder kind of option?
Download Git from here.
Make a repository at GitHub. It will give you a list of commands you can run to upload the project into the GitHub repository:
cd "Your project directory"
git init
git add .
git commit -m "First commit"
git remote add origin "your GitHub URL"
git push -u origin master
Githubthey also tell you all of the commands to upload the repo.