Home > OS >  `git log --name-only` show coauthors
`git log --name-only` show coauthors

Time:06-17

Although I have added Co-authored-by: in the commit message, git log --name-only only shows one author, not the others, how can I make git show the coauthors?

CodePudding user response:

how can I make git show the coauthors

You can't. Git commits don't have coauthors. There is a GitHub coauthor feature, and other hosting milieus may support that sort of thing too; but Git itself knows nothing of it.

  • Related