1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 14:55:31 +02:00

git-authors: add page (#5951)

This commit is contained in:
CleanMachine1 2021-05-18 19:30:38 +01:00 committed by GitHub
parent d5ec320f47
commit 440330bd7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +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`.
> 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:
`git authors --list`
- List committers, excluding emails, in the default editor, reading from the `AUTHORS` file:
`git authors --no-email`