Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: jfpjr on June 26, 2014, 05:49:26 pm

Title: Download SVN
Post by: jfpjr on June 26, 2014, 05:49:26 pm
what is the svn command to download rev 9781 from svn
Title: Re: Download SVN
Post by: Folco on June 26, 2014, 08:13:27 pm
http://www.codeblocks.org/downloads/7

And try to use "hi", "please", "thanks in advance", "?" etc...
Title: Re: Download SVN
Post by: jfpjr on June 26, 2014, 08:27:25 pm
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
Title: Re: Download SVN
Post by: pirx67 on June 26, 2014, 10:15:35 pm
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.
Title: Re: Download SVN
Post by: jfpjr on June 26, 2014, 10:25:52 pm
Thank you pirx76 It's downloading now.