Git & GitHub: Complete Guide
Version control from scratch — commits, branches, pull requests & building a GitHub portfolio that impresses recruiters
What is Git & Why?
Git tracks changes in your code. Think of it as "Ctrl+Z on steroids" — you can go back to any version of your project, ever.
GitHub is where you store your code online. It's like Google Drive for code. Every developer has a GitHub profile.
Why it matters: 100% of tech companies use Git. Your GitHub profile IS your coding resume. Recruiters check it before your actual resume.
Install Git: Download from git-scm.com. Or use GitHub Desktop (GUI) if command line scares you.
Create a GitHub account. Set your profile photo, bio, and pin your best repositories.
Core Commands
git init — Start tracking a project. Run once in your project folder.
git add . — Stage all changes. Like putting files in an envelope before mailing.
git commit -m "message" — Save a snapshot. Write clear messages: "Add login page" not "update".
git push — Upload to GitHub. git pull — Download latest changes. git clone — Copy a repo to your computer.
Branches & Collaboration
Branches let you work on features without breaking the main code. git checkout -b feature-name creates a new branch.
Pull Requests (PRs): When your feature is ready, create a PR on GitHub. Team reviews your code before merging.
Merge conflicts happen when two people edit the same line. Git shows both versions — you choose which to keep.
Open source: Find projects on GitHub, fork them, fix a bug or add a feature, submit a PR. This is how you build credibility.
GitHub Portfolio
Pin your 6 best repositories. Each should have: clear README, screenshots, tech stack, how to run it.
Green contribution graph: Commit something every day. Even small changes count. Consistency impresses recruiters.
README template: Project name → Description → Screenshots → Tech stack → How to install → How to use → Contributing guidelines.
GitHub Pages: Host your portfolio website for free on GitHub. yourname.github.io — instant developer portfolio.
Unlock Full Guide
3 more sections with exercises, tips & next steps
Login to Read Full Guide Demo: admin / admin123