Git Diff — Free Git & GitHub Tutorial

Learn Git Diff in Git & GitHub with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

Git Diff — Free Git & GitHub Tutorial

Learn Git Diff in Git & GitHub with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

✓ 100% Free ✓ No Login Needed ✓ NCERT / CBSE Aligned ✓ Download as PDF

TL;DR: Learn Git Diff in Git & GitHub with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

Written & reviewed by the Syllab.in Academic Team (CBSE/NCERT subject experts) · Updated

🤖 Stuck on any question? Ask Syllab's free AI Tutor for a step-by-step explanation — instant, unlimited, no login.

Git Diff in Git & GitHub

`git diff` shows line-by-line what changed between versions. It displays removed lines (with -) and added lines (with +). This is useful before committing to make sure you're committing the right changes.

You can compare your current work to the last commit, or any two commits. It's like a detailed "before and after" view.

Priya modifies the README to add instructions. Before committing, she runs `git diff` to review exactly what she changed and make sure there are no accidental edits.

Git Diff — Syntax

git diff                    # Changes not staged
git diff --staged            # Changes staged
git diff <commit1> <commit2> # Between commits

Learn Git Diff step by step with Syllab's free interactive Git & GitHub tutorial — runnable code examples, practice exercises and instant AI feedback, all free with no signup. Explore the full Git & GitHub course →