Code::Blocks Forums
User forums => General (but related to Code::Blocks) => Topic started by: jfpjr on June 26, 2014, 05:49:26 pm
-
what is the svn command to download rev 9781 from svn
-
http://www.codeblocks.org/downloads/7
And try to use "hi", "please", "thanks in advance", "?" etc...
-
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
-
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.
-
Thank you pirx76 It's downloading now.