Given the use of TortoiseSVN, it can be assumed that Windows is being used.
In that case, there is the option to use the Subversion command line tools
and PowerShell to process the Subversion log.
The PowerShell script could retrieve the log entries between the selected
dates, where the entry for each revision includes the list of files changed
in that revision. The script would create a list of the changed files in
all the revisions selected. The script would then select only unique files
in the list, such that a specific file that has been changed in multiple
revisions would be reduced to a single entry.
In PowerShell, the Subversion command might be as follows:
svn log --xml --revision `{2022-01-01`}:`{2022-01-31`}
*N.B. The backticks are required to escape the curly brackets in
PowerShell.*
Note that the specified svn command creates output in an XML format that
may be easier to process in PowerShell. An alternative approach would be to
remove the --xml parameter and then use a regular expression to extract the
changed files for each revision. The choice would be yours.
Reducing multiple occerences of the same file changed in multiple revisions
could be achieved with the Select-Object Powershell command and the -Unique
parameter.
Have I done this? No. Would there be reasonable effort for you to create
such a PowerShell script? Yes. Perhaps you have a colleague with PowerShell
experience and could help.
Seems like a viable option if this report is important to you.
Hope this helps.
On Monday, 7 February 2022 at 05:56:20 UTC [email protected] wrote:
> Too bad. I wanted to use it for an activity report. I hope it exists in
> the future
>
> Le dim. 6 févr. 2022 à 11:24, Stefan via TortoiseSVN <
> [email protected]> a écrit :
>
>>
>>
>> On Sunday, February 6, 2022 at 11:21:37 AM UTC+1 [email protected] wrote:
>>
>>> i just tried, but it shows only one line per file. i'd like to see all
>>> the commits, if a file has been committed 10 times, i'd like to see 10
>>> lines for this file, with the date
>>>
>>
>> you can show the log for each file separately
>>
>> TSVN does not provide a dialog that show exactly what you want in one
>> place.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "TortoiseSVN" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/tortoisesvn/2fc249d7-1b7b-4a68-b2ab-f7cac659675en%40googlegroups.com
>>
>> <https://groups.google.com/d/msgid/tortoisesvn/2fc249d7-1b7b-4a68-b2ab-f7cac659675en%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>
--
You received this message because you are subscribed to the Google Groups
"TortoiseSVN" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tortoisesvn/7276811d-36c5-49a8-ac98-61b4fa14aa05n%40googlegroups.com.