1

In my svn project there is a directory which has an svn:ignore property. Now i want to find out which committer set this property on this directory and the corresponding revision.

How can i do that on commandline?

[I'm on Linux. GUI-options to find that out are also welcome.]

Macros
  • 7,099
  • 2
  • 39
  • 61
Wolkenarchitekt
  • 20,170
  • 29
  • 111
  • 174

2 Answers2

0

I didn't find a mechanism easily listed in The Book, which seems surprising.

If it comes to it you could do a binary search over revisions using svn propget svn:ignore directory -r<foo>, starting at the half-way point and moving up or down if the property is there or not -- it'll take at most 20 tries if you've got fewer than a million commits...

sarnold
  • 102,305
  • 22
  • 181
  • 238
0

So the svn-commandline doen't provide the functionality, and I didn't find a good script for my use case, so i just wrote my own which does exactly what i wanted in my question. I posted it in the related post, to avoid duplication: how to detect modified properties using SVN log

Community
  • 1
  • 1
Wolkenarchitekt
  • 20,170
  • 29
  • 111
  • 174