git-authors: fix example descriptions (#5987)

manned-org^2
Axel Navarro 2021-05-24 09:53:03 -03:00 committed by GitHub
parent df9b9a9a20
commit e5d018d0b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -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: <https://github.com/tj/git-extras/blob/master/Commands.md#git-authors>.
- 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`