git init
- Create a repo from scratch.
git clone
- Copy a repo from GitHub or other remote repo.
git add
- Stage files or file changes to your local repo.
git commit
- Commit (Save changes as a record) to the local repo.
git merge
- Add changes from another branch onto current branch.