Damien Robert <damien.olivier.robert+gmane@xxxxxxxxx> writes: > Matthieu Moy wrote in message <vpqfvukdy39.fsf@xxxxxxxxxxxx>: >>> that confuses users. >> >> ... but I do agree that the doc is really confusing. It would be much >> better if the doc could be reduced to: >> >> "This is a synonym for linkgit:git-log[1] --raw --some --other ---options. >> Please refer to the documentation of that command." > > If I may chime in as a user: what really confused me about git whatchanged > is this part of man gitcore-tutorial: Indeed. How about applying this, to reduce the number of references to whatchanged in the docs? diff --git a/Documentation/git.txt b/Documentation/git.txt index 3bdd56e..486a58b 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -818,7 +818,7 @@ for further details. 'GIT_FLUSH':: If this environment variable is set to "1", then commands such as 'git blame' (in incremental mode), 'git rev-list', 'git log', - 'git check-attr', 'git check-ignore', and 'git whatchanged' will + 'git check-attr', and 'git check-ignore' will force a flush of the output stream after each record have been flushed. If this variable is set to "0", the output of these commands will be done diff --git a/Documentation/gitcore-tutorial.txt b/Documentation/gitcore-tutorial.txt index f538a87..c6a1677 100644 --- a/Documentation/gitcore-tutorial.txt +++ b/Documentation/gitcore-tutorial.txt @@ -532,12 +532,7 @@ commit, and you can tell it to show a whole series of diffs. Alternatively, you can tell it to be "silent", and not show the diffs at all, but just show the actual commit message. -In fact, together with the 'git rev-list' program (which generates a -list of revisions), 'git diff-tree' ends up being a veritable fount of -changes. A trivial (but very useful) script called 'git whatchanged' is -included with Git which does exactly this, and shows a log of recent -activities. - +'git log' can also be used to display changes introduced by some commits. To see the whole history of our pitiful little git-tutorial project, you can do @@ -550,7 +545,7 @@ with the associated patches use the more complex (and much more powerful) ---------------- -$ git whatchanged -p +$ git log --raw -p ---------------- and you will see exactly what has changed in the repository over its -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html