Git/diff
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Git
About
git diff lets you see the differences between current edits and the last commit.
git diff --stagedwill show the differences between staged files and the last commit.git diff <branch 1> <branch 2>will show the differences betweenbranch 1andbranch 2.git diff <other branch>will show the differences betweenother branchand the current branch.
See also git status, which just lists files that have changed.
