SYNOPSIS

git whatchanged <option>

WARNING

git whatchanged has been deprecated and is scheduled for removal in a future version of Git, as it is merely git log with different defaults.

DESCRIPTION

各コミットのコミットログとdiff出力を表示します。

New users are encouraged to use git-log(1) instead. The whatchanged command is essentially the same as git-log(1) but defaults to showing the raw format diff output and skipping merges:

git log --raw --no-merges

このコマンドは主に歴史的な理由で維持されています。 git log が発明されるずっと前に Linux カーネルのメーリングリスト を読んで Git を学んだ多くの人々の指は、 whatchanged と入力する癖がついています。

Examples

git whatchanged -p v2.6.12.. include/scsi drivers/scsi

include/scsi または drivers/scsi サブディレクトリ内のファイルを変更したバージョン v2.6.12 以降のコミットをパッチとして表示する

git whatchanged --since="2 weeks ago" -- gitk

過去2週間の変更をファイル gitk に表示します。 -- は、「ブランチ名 gitk 」との混同を避けるために必要です。

GIT

Part of the git(1) suite