I'm using this code snippet for finding top revision number from svn but my page is not responding. It keeps on searching only
using (SvnClient client = new SvnClient())
{
SvnInfoEventArgs info;
Uri repos = new Uri("svn://india01/repository/branches/mybranch1");
client.GetInfo(repos, out info);
lblMsg.Visible = true;
lblMsg.Text = (string.Format("The last revision of {0} is {1}",
repos, info.Revision));
}
I want to fetch the top revision number from the mybranch1
which is in the svn repository at svn://india01/repository/branches/mybranch1
.