3

How can one format text in svn commit log messages? Using *text* does not make the text bold, it shows * in message when I use svn log.

Eric Renouf
  • 13,950
  • 3
  • 45
  • 67
वरुण
  • 1,237
  • 3
  • 18
  • 50

2 Answers2

8

Subversion itself considers the log message as plain text, so you cannot do it in such a way that any client will display your formatting.

The TortoiseSVN client does however display log message text between ‘*’s as bold (and ‘_’s as underlined and ‘^’s as italicised), as documented in the manual. But bear this in mind:

  • This formatting is meaningless to Subversion itself; svn log will display plain text.
  • Tortoise appears to do this only when the characters immediately next to the markup on the inside are letters.
  • Tortoise displays the markup characters, whether or not it honours them.
  • The bolding is fairly faint in many fonts.
  • I have the impression that the commit-dialogue does not always immediately apply the markup, e.g. when pasting text.
PJTraill
  • 1,353
  • 12
  • 30
0

You can not format commit-messages. Period

Lazy Badger
  • 94,711
  • 9
  • 78
  • 110