Author Topic: Download SVN  (Read 7687 times)

Offline jfpjr

  • Multiple posting newcomer
  • *
  • Posts: 27
Download SVN
« on: June 26, 2014, 05:49:26 pm »
what is the svn command to download rev 9781 from svn

Offline Folco

  • Regular
  • ***
  • Posts: 343
    • Folco's blog (68k lover)
Re: Download SVN
« Reply #1 on: June 26, 2014, 08:13:27 pm »
http://www.codeblocks.org/downloads/7

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

Offline jfpjr

  • Multiple posting newcomer
  • *
  • Posts: 27
Re: Download SVN
« Reply #2 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

Offline pirx67

  • Multiple posting newcomer
  • *
  • Posts: 40
Re: Download SVN
« Reply #3 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.

Offline jfpjr

  • Multiple posting newcomer
  • *
  • Posts: 27
Re: Download SVN
« Reply #4 on: June 26, 2014, 10:25:52 pm »
Thank you pirx76 It's downloading now.