cd Documents/CodingDojo/ mkdir basic_repo cd basic_repo/ git init git touch README.md git add README.md git commit -m "First Commit" git log git status git remote add origin https://github.com/Ernesto-S/basic_repo.git git push -u origin master
Made changes to README.md
git status git add README.md git commit -m "Creating Repo Instructions" git remote add origin https://github.com/Ernesto-S/basic_repo.git git push -u origin master