CuriousMind
CuriousMind

Reputation: 15788

svn-- how to check remote logs without updating

Using SVN, if I am on version 100. remote is on verson 110, when I do svn log, I can only see history up to 100. to see revisions 101-110, I need to do an svn update.

Is there a way to see those revisions without svn update?

Upvotes: 5

Views: 2463

Answers (3)

Chayne P. S.
Chayne P. S.

Reputation: 1638

Just run the following:

svn log `svn info |grep ^URL|cut -f2 -d" "`

Upvotes: 2

kan
kan

Reputation: 28951

Use svn log <repo url> to show remote history

Upvotes: 8

Larry Shatzer
Larry Shatzer

Reputation: 3627

You will need to do a svn log URL instead of just a svn log. URL will be the URL of where you checked it out. svn info can give you that information.

Upvotes: 2

Related Questions