On Tue, Apr 15, 2008 at 11:25 PM, Avery Pennarun <apenwarr@xxxxxxxxx> wrote: > However, when I do this, all the commits to svn end up having *my* > userid attached, rather than the userid of the git user. If I do "git > log" before "git-svn dcommit", it shows all the right authors, but > this information is lost when I dcommit. > > Is there a way to not lose this information? > Subversion only remembers the user that made the commit; there's no way to tell it that someone else wrote the patch and that you just committed it. However, examining git-svn, there seems to be an undocumented option. You can do this: git svn dcommit --use-log-author That uses the Signed-off-by: field in the commit message to extract the author information. Of course it won't rescue the author field on old commits, and you have to have Signed-off-by on any new ones to gain any benefit. regards, Richard -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html