Git/diff
< Git
Jump to navigation
Jump to search
About
git diff lets you see the differences between current edits and the last commit.
git diff --staged
will show the differences between staged files and the last commit.git diff <branch 1> <branch 2>
will show the differences betweenbranch 1
andbranch 2
.git diff <other branch>
will show the differences betweenother branch
and the current branch.
See also git status, which just lists files that have changed.