How do I download code using SVN/Tortoise from Google Code?

前端 未结 9 1401
醉话见心
醉话见心 2020-11-29 17:29

I just saw a really cool WPF twitter client that I think is developed by the Herding Code podcast guys HerdingCode called Witty. (or at least, I see a lot of those guys usi

相关标签:
9条回答
  • 2020-11-29 17:33

    Right click on the folder you want to download in, and open up tortoise-svn -> repo-browser.

    Enter in the URL above in the next window.

    right click on the trunk folder and choose either checkout (if you want to update from SVN later) or export (if you just want your own copy of that revision).

    0 讨论(0)
  • 2020-11-29 17:36

    The manual explains how to checkout code:

    http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-checkout.html

    0 讨论(0)
  • 2020-11-29 17:43
    • Download the svn binaries
    • unpack them somewhere and add the bin folder to your PATH environment variable
    • open a command line console (cmd.exe)
    • enter than "svn checkout ...." command there
      • make sure to first cd to the place where you want to download (i.e checkout) the projects' code.
    0 讨论(0)
  • 2020-11-29 17:47

    Select Tortoise SVN - > Settings - > NetWork

    Fill the required proxy if any and then check.

    0 讨论(0)
  • 2020-11-29 17:50

    See my answer to a very similar question here: How to download/checkout a project from Google Code in Windows?

    In brief: If you don't want to install anything but do want to download an SVN or GIT repository, then you can use this: http://downloadsvn.codeplex.com

    0 讨论(0)
  • 2020-11-29 17:51

    Create a folder where you want to keep the code, and right click on it. Choose SVN Checkout... and type http://wittytwitter.googlecode.com/svn/trunk into the URL of repository field.

    You can also run

    svn checkout http://wittytwitter.googlecode.com/svn/trunk
    

    from the command line in the folder you want to keep it (svn.exe has to be in your path, of course).

    0 讨论(0)
提交回复
热议问题