1

I am trying to get an svn blame out of svn for the svn properties. I expected there would be something like:

svn blame --prop .

but I cannot find such an option.

Veda
  • 2,025
  • 1
  • 18
  • 34
  • 1
    possible duplicate of [How do you get the history of a file/folder property in SVN?](http://stackoverflow.com/questions/1230389/how-do-you-get-the-history-of-a-file-folder-property-in-svn) – bahrep Nov 18 '13 at 11:48
  • Did my answer help you in 2013? Please, upvote and accept it then. :) – bahrep Feb 15 '19 at 14:37

1 Answers1

0

Revision properties are not versioned in Apache Subversion. In other words, you can't run svn blame against revision property.

From "SVNBook | Properties":

The main difference is that revision properties are not versioned. In other words, if you change the value of, or delete, a revision property, there's no way, within the scope of Subversion's functionality, to recover the previous value.

bahrep
  • 29,961
  • 12
  • 103
  • 150
  • But afaik normal properties are versioned. Like svn:externals svn:ignore etc. – Veda Nov 18 '13 at 11:47
  • 1
    @Veda see http://stackoverflow.com/questions/1230389/how-do-you-get-the-history-of-a-file-folder-property-in-svn – bahrep Nov 18 '13 at 11:48