Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 435 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 435 Bytes

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