Steve Robbins
Steve Robbins

Reputation: 13812

Get Log of Every Revision, Regardless of Location

Doing something like svn log -l5 -v will get me a log of the last 5 commits for the dir that I'm in, but it will skip over some revision numbers. Is there a way to get all the revisions in order regardless of the location you exec svn log in?

Upvotes: 1

Views: 56

Answers (1)

AndreKR
AndreKR

Reputation: 33658

You need to do it on the root URL of the repository, which you can get with svn info.

svn log -l5 -v <root URL>

Upvotes: 6

Related Questions