• show you changes in the working directory that are not yet staged for the next commit • $ git diff --cached(有add的) • show you the difference between the index and your last commit • $ git diff HEAD(全部) • shows changes in the working directory since your last commit 11年9月30日星期五