git init
and git clone
git status
git log
and git show
to review past commitsgit add
git commit
git 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