this is how to upload the files or folder to github reposetory.
-->git init
to initialize the git in your folder which you want to upload to github.
-->git status
to see the status of your files.
-->git add .
to add all file to git.
-->git commit -m 'first commit'
to commit the changes made in your file.
-->git push --set-upstream https://github.com/your-username/your-repository master
to push the files to github..
and thats all...
Thank you!!!!:+1: :fu: