From e5d018d0b5c14f805ef9c9b402a6fa305089bbe9 Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Mon, 24 May 2021 09:53:03 -0300 Subject: [PATCH] git-authors: fix example descriptions (#5987) --- pages/common/git-authors.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pages/common/git-authors.md b/pages/common/git-authors.md index 8179e4060..c3302595f 100644 --- a/pages/common/git-authors.md +++ b/pages/common/git-authors.md @@ -1,17 +1,17 @@ # git authors -> Display a log or list of committers of a Git repository. Everything except `--list` will create a new file called `AUTHORS`. +> Generate a list of committers of a Git repository. > Part of `git-extras`. > More information: . -- Create or replace the `AUTHORS` file with a list of committers and open it in the default editor: - -`git authors` - -- Print a full list of committers: +- Print a full list of committers to stdout instead of to the `AUTHORS` file: `git authors --list` -- List committers, excluding emails, in the default editor, reading from the `AUTHORS` file: +- Append the list of committers to the the `AUTHORS` file and open it in the default editor: + +`git authors` + +- Append the list of committers, excluding emails, to the the `AUTHORS` file and open it in the default editor: `git authors --no-email`