Git Commands Creating a repository online for the 1st time ! $ touch README.md $ git init $ git add README.md $ git commit -m "first comment" //Comment $ git remote add origin https://github.com/yuckYew/GitCommands.git $ git push -u origin master When adding on to your repository online with changes $ git add . $ git commit -m 'what has changed' $ git push