[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: Finding out latest revision in a branch

From: Dale Worley <dworley_at_pingtel.com>
Date: 2005-05-11 15:35:17 CEST

> From: Shridhar Daithankar [mailto:ghodechhap@ghodechhap.net]
>
> - In working copy, I do a svn log, I get following revisions,
> 1,4,5,78,79,81,82 with branch creation on revision 78.

I assume that you mean that the branch directory first exists in revision
78.

> The diff 78:82 is 768517 lines which is hell lot more than I
> can account for.
> but at least it mentions that it is diffing between 78 and 82.

You might want to output the diff into a file and browse the file to look
for what is causing all the differences. My suspicion is that you have
altered the end-of-line characters, replaced tabs with spaces, or done some
such formatting change. You may want to do this to get a cleaner diff:

    svn diff --diff-cmd=diff -x--ignore-all-space -r78:82 ...directory...
>file

If you have Gnu diff, that will show all the changes that are not just
whitespace changes.

> The diff 78:81 is 765087 lines but it mentions that it is
> diffing revision 0 and 81!!.

I would check again that you did the diff correctly, as that is not correct
behavior.

> Is there a way where I can see the branch progress. AFAIU,
> you can get history
> of either file or directory but not the branch as such.

In Subversion, a branch is just a directory, so there is no branch history
separate from directory history.

Dale

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed May 11 16:29:31 2005

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.