java - Why revision # different between show log and svn update? -


when take update on 1 svn folder shows latest revision @ update taken completed @ revision:116

but when show log on folder shows latest revision number 100 in history.

my question why both revision numbers not in synch ?

for information :- when execute below command see if there change b/w revision 100 , 116, see diff.txt created no content

svn diff -r 100:116 > diff.txt

subversion revisions global per repository

log subtree of repo show revisions, affected subtree (and ignore outside tree)


explanation example

\branches>svn updating '.': ... updated revision 5. 

repository head r5

branches>svn log -q ------------------------------------------------------------------------ r2 | lazybadger | 2013-11-28 00:13:01 +0600 (Чт, 28 ноя 2013) ------------------------------------------------------------------------ r1 | www-data | 2013-11-27 18:13:32 +0600 (Ср, 27 ноя 2013) ------------------------------------------------------------------------ 

but latest commit into /branches in r2

ps: have read svnbook, really


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -