SYNOPSIS
--------
[synopsis]
-git last-modified [--recursive] [--show-trees] [<revision-range>] [[--] <path>...]
+git last-modified [--recursive] [--show-trees]
+ [<revision-range>] [[--] <pathspec>...]
DESCRIPTION
-----------
spell `<revision-range>`, see the 'Specifying Ranges' section of
linkgit:gitrevisions[7].
-`[--] <path>...`::
- For each _<path>_ given, the commit which last modified it is returned.
- Without an optional path parameter, all files and subdirectories
- in path traversal the are included in the output.
+`[--] <pathspec>...`::
+ Show the commit that last modified each path matching _<pathspec>_.
+ If no _<pathspec>_ is given, all files and subdirectories are included.
+ See linkgit:gitglossary[7] for details on pathspec syntax.
SEE ALSO
--------
struct last_modified lm = { 0 };
const char * const last_modified_usage[] = {
- N_("git last-modified [--recursive] [--show-trees] "
- "[<revision-range>] [[--] <path>...]"),
+ N_("git last-modified [--recursive] [--show-trees]\n"
+ " [<revision-range>] [[--] <pathspec>...]"),
NULL
};