On Mon, Sep 13 2021, Matthias Aßhauer via GitGitGadget wrote: > From: =?UTF-8?q?Matthias=20A=C3=9Fhauer?= <mha1993@xxxxxxx> > > While 'git version' is probably the least complex git command, > it is a non-experimental user-facing builtin command. As such > it should have a help page. This looks good > Signed-off-by: Matthias Aßhauer <mha1993@xxxxxxx> > --- > Documentation/git-version.txt | 35 +++++++++++++++++++++++++++++++++++ > 1 file changed, 35 insertions(+) > create mode 100644 Documentation/git-version.txt > > diff --git a/Documentation/git-version.txt b/Documentation/git-version.txt > new file mode 100644 > index 00000000000..c7d6b496c8d > --- /dev/null > +++ b/Documentation/git-version.txt > @@ -0,0 +1,35 @@ > +git-version(1) > +============== > + > +NAME > +---- > +git-version - Display version information about Git > + > + > +SYNOPSIS > +-------- > +[verse] > +'git version' [--build-options] > > + > +DESCRIPTION > +----------- > + > +With no options given, the version of 'git' is printed > +on the standard output. Good > + > +If the option `--build-options` is given, information about how git was built is > +printed on the standard output in addition to the version number. Let's just cover this in the OPTIONS section you added... > +Note that `git --version` is identical to `git version` because the > +former is internally converted into the latter. Probably better to just have a new section: SEE ALSO -------- linkgit:git[1]'s `--version` option, which dispatches to this command. > +OPTIONS > +------- > +--build-options:: > + Prints out additional information about how git was built for diagnostic > + purposes. > + > +GIT > +--- > +Part of the linkgit:git[1] suite It would also be good to update git.txt, which now says: Prints the Git suite version that the git program came from To say e.g. "Dispatches to linkgit:git-version[1], prints the git program version". Or something like that, i.e. to cross-link the two.