Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 241
CuriousMind Avatar asked Aug 28 '15 16:08

CuriousMind


1 Answers

Use svn log <repo url> to show remote history

like image 190
kan Avatar answered Oct 01 '22 21:10

kan