Bazaar support adding meta data to commit to record who the actual author of a change is vs. the person who commits the change:
$ bzr commit --author "Jane Rey <jrey@example.com>" \ --author "John Doe <jdoe@example.com>"
After adding this meta data it accessible via bzr log
, like:
------------------------------------------------------------ revno: 105661 fixes bug(s): http://debbugs.gnu.org/9414 author: Oleksandr Gavenko committer: Juri Linkov branch nick: trunk timestamp: Mon 2011-09-05 12:55:11 +0300 message: * lisp/progmodes/grep.el (rgrep): Add "-type d".
It is possible embed such metadata in commit for Mercurial/Git?