$ git log /path/to/file # 戻したい状態のハッシュ値を調べる $ git checkout <ハッシュ値> /path/to/file # checkout でその時の状態に戻す
$ git checkout HEAD /path/to/file # checkout HEAD で最新の状態に戻す
.git のあるディレクトリで下記コマンドを実行
find . -type f | xargs git diff HEAD