BASIC
What command creates a new Git repository?
git init
Which command stages files for commit?
git add
What does git clone do?
Duplicates a repo
Which command shows commit history?
git log
What command lets you switch branches?
git checkout
What is .gitignore used for?
Ignoring files
Which GitHub feature lets you request a review before merging?
Pull request
What is a remote repository?
A GitHub-hosted repo
Which command pushes commits to GitHub
git push
Which command fetches and merges from GitHub?
git pull