Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git-authors: add page #5951

Merged
merged 22 commits into from
May 18, 2021
Merged
Changes from 10 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions pages/common/git-authors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# git authors

> Display log or list of committers of a Git repository. Sorted by amount of commits.
> Part of `git-extras`.
> Creates an AUTHORS file in the Git repository, this will be used for the command.
CleanMachine1 marked this conversation as resolved.
Show resolved Hide resolved
> More information: <https://github.com/tj/git-extras/blob/master/Commands.md#git-authors>.

- Display log of committers of the current Git repository, reading from AUTHORS file, opened in your default editor:

`git authors`

- Print full list of committers of the current Git repository, reading from AUTHORS file:

`git authors --list`

- Display full log of committers of the current Git repository, excluding emails, reading from AUTHORS file, opened in your default editor:

`git authors --no-email`