Name

svnadmin lscr — Print, one-per-line and youngest-to-eldest, the revisions in which PATH was modified.

Synopsis

svnadmin lscr REPOS_PATH PATH [--copies]

Description

lscr [35] prints, one-per-line and youngest-to-eldest, the revisions in which PATH was modified. Use the COPIES flag to allow this operation to cross copy history while searching for revisions. PATH must exist in the HEAD of the repository.

Switches

--copies
          

Examples

List the revisions in which a path was modified:

$ svnadmin lscr /usr/local/svn/repos/ test-moved-file
34
33
          

List the revisions in which a path was modified including changes that occurred before it was moved/copied:

$ svnadmin lscr /usr/local/svn/repos/ test-moved-file --copies
34
33
15
14
…
          


[35] It's not immediately obvious, but lscr stands for LiSt Changed Revisions. That's what happens when you let programmers come up with names for commands.