After checking Upload my project to github I still have no idea how to get a project uploaded to my Git Hub repository.
I\'m new to GitHub and I have no idea what to
Follow these steps to project to Github
1) git init
git init
2) git add .
git add .
3) git commit -m "Add all my files"
git commit -m "Add all my files"
4) git remote add origin https://github.com/yourusername/your-repo-name.git
git remote add origin https://github.com/yourusername/your-repo-name.git
Upload of project from scratch require git pull origin master.
git pull origin master
5) git pull origin master
6) git push origin master
git push origin master