Open
Description
For companies that do a fair amount of paired programming, it's valuable to be able to represent multiple authors for commits. So we use Git's co-author feature:
https://help.github.com/en/articles/creating-a-commit-with-multiple-authors#creating-co-authored-commits-on-the-command-line
It would be great if this was a feature with these capabilities:
- Have a step in the CLI that asks for a co-author (after everything else?)
- Automatically add the bash profile in context as one of the authors (if additional co-authors are selected)
- Automatically add co-authors via global config (workstation) and/or project config
- Provide list of easy to add co-authors via global config (workstation) and/or project config
- Co-author tag for custom commit message template
Activity
alvarolorentedev commentedon Aug 3, 2022
@ArrayKnight I am currently using https://www.npmjs.com/package/cz-format-extension to achieve this using the list of contributors on
package.json
. You can see the code here.p-m-p commentedon Jun 26, 2023
I was looking for similar solution to this but didn't find anything so added a wrapper for
cz-conventional-changelog
to add co-authors https://github.com/p-m-p/cz-conventional-changelog-coauthors.Happy to provide as a proper feature to one of the core libraries if desired.
antono4 commentedon Jun 27, 2023
how to Creating a commit with multiple authors