- Navigate to Github.com
- click on your icon at the top right of browser and select "repositories"
- click "new" button at the top right of browser
- Navigate to the root folder of the project you would like to become a repository.
git init- tells this directory that it is a repository
git add .- adds all changes in this directory to the repository
git commit -m 'my update message'- commits these changes to be pushed onto the web
git push -u origin master- pushes the changes onto the web, making them accessible through the cloud