cz-cli icon indicating copy to clipboard operation
cz-cli copied to clipboard

Feature request: Git Co-author

Open ArrayKnight opened this issue 6 years ago • 3 comments

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

ArrayKnight avatar Oct 07 '19 19:10 ArrayKnight

@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.

const { contributors } = require('./package.json')
....
module.exports = {
  questions({inquirer}) {
    return [
      ...
      {
        type: 'checkbox',
        name: 'coauthors',
        message: 'Select Co-Authors if any:',
        choices: contributors.map(contributor => ({
            name: contributor.name,
            value: `Co-authored-by: ${contributor.name} <${contributor.email}>`,
        }))
      },
    ]
  },
  commitMessage({answers}) {
    ....
    const coauthors = answers.coauthors.join('\n');
    ....
  }
}

alvarolorentedev avatar Aug 03 '22 14:08 alvarolorentedev

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.

p-m-p avatar Jun 26 '23 11:06 p-m-p

how to Creating a commit with multiple authors

antono4 avatar Jun 27 '23 01:06 antono4