3

I'm using smartgit to manage an SVN repo. We have 2 branches, trunk, and release. We are cherry-picking commits from trunk to release as they are ready. How do I set up smartgit to retain the author of the original commit on the cherry pick? Thank you in advance!

  • 1
    While Git is able to keep author names independent, SVN is not. As soon as you check in Git commits into Subversion, the original author data no longer matters and the Subversion server decides about the content. And the author is taken from the user checking in the changes. – poke May 18 '15 at 22:58
  • Aha. That makes sense. I thought there might be some setting somewhere I was missing. We have been manually changing the authors through SVN. – ballpointpenguin May 19 '15 at 15:13

1 Answers1

0

Unless you can make SmartGit use the options --add-author-from and --use-log-author on its internal git svn dcommit (options illustrated in here), that would not be supported.

And even then, that would only add information in the revision message, without changing the actual author.
(I have also seen also adding an SVN property)

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250