Git & GitHub
/Beginner
Beginner Interview Questions
Definition
Common Git questions asked during entry-level developer interviews to ensure the candidate understands basic version control concepts.
Explain Like I'm New
Interviewers want to make sure you know how to save code, push it to GitHub, and understand the difference between Git and GitHub.
Real World Example
Being asked 'What is the difference between `git fetch` and `git pull`?'
Common Use Cases
- •Junior Developer Interviews
Terminal Output
bash / terminal
/*
Q: What is a Pull Request?
A: A Pull Request (PR) is a GitHub feature that lets you propose
changes to a repository. It provides a web interface where
other developers can review your code, leave comments, and
approve the changes before they are officially merged into
the main branch.
*/
Interview Questions
basic
- What is the command to initialize a new Git repository?
intermediate
- What is the Staging Area?