aboutsummaryrefslogtreecommitdiff
path: root/Documentation/git-last-modified.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/git-last-modified.adoc')
-rw-r--r--Documentation/git-last-modified.adoc21
1 files changed, 20 insertions, 1 deletions
diff --git a/Documentation/git-last-modified.adoc b/Documentation/git-last-modified.adoc
index 7c3fd844b8..3760fd33a1 100644
--- a/Documentation/git-last-modified.adoc
+++ b/Documentation/git-last-modified.adoc
@@ -9,7 +9,7 @@ git-last-modified - EXPERIMENTAL: Show when files were last modified
SYNOPSIS
--------
[synopsis]
-git last-modified [--recursive] [--show-trees]
+git last-modified [--recursive] [--show-trees] [-z]
[<revision-range>] [[--] <pathspec>...]
DESCRIPTION
@@ -33,6 +33,9 @@ OPTIONS
Show tree entries even when recursing into them. It has no effect
without `--recursive`.
+`-z`::
+ Terminate each line with a _NUL_ character rather than a newline.
+
`<revision-range>`::
Only traverse commits in the specified revision range. When no
`<revision-range>` is specified, it defaults to `HEAD` (i.e. the whole
@@ -45,6 +48,22 @@ OPTIONS
If no _<pathspec>_ is given, all files and subdirectories are included.
See linkgit:gitglossary[7] for details on pathspec syntax.
+OUTPUT
+------
+
+The output is in the format:
+
+------------
+ <oid> TAB <path> LF
+------------
+
+If a path contains any special characters, the path is C-style quoted. To
+avoid quoting, pass option `-z` to terminate each line with a NUL.
+
+------------
+ <oid> TAB <path> NUL
+------------
+
SEE ALSO
--------
linkgit:git-blame[1],