git init and git clonegit statusgit log and git show to review past commitsgit addgit commitgit commit --amend to undo most recent commit or change wording of commit message
git reset
git is a local version control. GitHub is a service for hosting version control repos. GitHub allows sharing and collaberating with multiple people.
Topics to be covered:
git remote - Mangae remote repositorygit push - Send changes to remote repogit pull - Retrieve updates from remote repo
To view remote repos: git remote
This displays the shortname location of each repo available.
To view the full remote repo's path: git remote -v