How to attribute a single commit to multiple developers?

后端 未结 9 1436
感情败类
感情败类 2020-12-02 06:50

The way all version control systems I\'m familiar with work is that each commit is attributed to a single developer. The rise of Agile Engineering, and specifically pair pro

9条回答
  •  粉色の甜心
    2020-12-02 07:32

    Alternatively, there is an open source project, which I contribute to, on GitHub that provides a good way to do it from the command line. This project helps you to set an alias in order to create co-autored commits as follows:

    $ git co-commit -m "Commit message" --co "co-author "

    Using this approach, you are able to create co-authored commits without a graphical interface.

提交回复
热议问题