News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Download SVN

Started by jfpjr, June 26, 2014, 05:49:26 PM

Previous topic - Next topic

jfpjr

what is the svn command to download rev 9781 from svn

Folco

http://www.codeblocks.org/downloads/7

And try to use "hi", "please", "thanks in advance", "?" etc...
Kernel Extremist - PedroM power ©

jfpjr

Hi i have tried

C:\Programming\cb>svn checkout svn://svn.code.sf.net/p/codeblocks/code/tags/9781
svn: URL 'svn://svn.code.sf.net/p/codeblocks/code/tags/9781'; doesn't exist

C:\Programming\cb>svn checkout svn://svn.code.sf.net/p/codeblocks/code/tags/rev9781
svn: URL 'svn://svn.code.sf.net/p/codeblocks/code/tags/rev9781'; doesn't exist

I am looking for that rev and do not know the correct syntax to retrive that rev.

Thank you

pirx67

Hi,

revision 9781 is only a svn revision number and not a tag. Therefore you won't find a tag with this name in the tags directory.

I think specifying the revision number as described at http://svnbook.red-bean.com/en/1.7/svn.ref.svn.c.checkout.html should
do the trick. The resulting command line would be:

svn --revision 9781 checkout svn://svn.code.sf.net/p/codeblocks/code/trunk

Hope that helps.

jfpjr

Thank you pirx76 It's downloading now.