Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The VisualSVN site hosts a 'book' on Subversion, located <a href="http://www.visualsvn.com/support/svnbook/" rel="nofollow">here</a>, which should give you a good starting point - though off the top of my head I'm not sure of the exact commands you'd need to use...</p> <p>There is a chapter which is a reference for commands:</p> <p><a href="http://www.visualsvn.com/support/svnbook/ref/" rel="nofollow">SVN Reference</a>.</p> <p>Explained there is <a href="http://www.visualsvn.com/support/svnbook/ref/svn/c/info/" rel="nofollow">svn info</a> which may help you out well enough.</p> <p>EDIT:</p> <p>On the other hand, after reading your altered title, <a href="http://www.visualsvn.com/support/svnbook/ref/svn/c/status/" rel="nofollow">svn status</a> may be what you're looking for?</p> <p>EDIT 2:</p> <p>Ok, given that the programming language used in your question is not explicitly stated, and the fact it's such a common syntax that we could liken the guesswork to that of beating a dead horse, here's a little snippet in the universal (in the Windows world) VBScript...</p> <pre><code>Dim shell, svn Set shell = CreateObject("WScript.Shell") Set svn = shell.Exec("svn info [working_copy_path]") WScript.Sleep 1000 Dim revision Do While svn.StdOut.AtEndOfStream &lt;&gt; True revision = svn.StdOut.ReadLine If left(revision, 8) = "Revision" Then Exit Do End If Loop WScript.Echo revision </code></pre> <p>I'm far from proud of the <code>Sleep</code> mechanism utilised, but luckily I'm not the one with (much of) a responsibility here, so I'll leave generating a clean-cut approach to yourself and just put this out there as an example.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload