使用 Tortoise SVN,如何下载 CodePlex 应用程序的最新版本源代码?
我正在尝试弄清楚如何下载最新的源代码。
这就是我所做的。
在我的台式机上,我创建了 CodePlex 应用帐户,安装了 Tortoise SVN 并成功将代码上传到网站。源代码现在显示在 CodePlex 网站上。
在我的笔记本电脑上,我安装了 Tortoise SVN。然后,我创建了一个空白文件夹,现在尝试下载 CodePlex 网站上提供的代码。
我知道我的 SVN URL、用户名和密码。
我只是不知道该怎么做。我尝试SVN Update,但它只下载几个文件,而不是完整的源代码。
I'm trying to figure out how to download the latest source code.
Here's what I've done.
On my desktop machine, I created my CodePlex app account, installed Tortoise SVN and successfully uploaded my code to the site. The source code now shows on the CodePlex site.
On my laptop, I installed Tortoise SVN. I then created a blank folder and I'm now trying to download the code available on my CodePlex site.
I know my SVN url, and my user name and password.
I'm just lost as to how to do it. I try SVN Update, but it only downloads a couple of files, not the complete source code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 Tortoise,只需右键单击您的目录并执行“SVN Checkout..”此选项位于“Tortoise SVN”菜单的正上方。
With Tortoise simply Right-Click in your Directory and do an "SVN Checkout.." This option is directly above your "Tortoise SVN" menu.
而不是“SVN 更新”
尝试“TortoiseSVN->更新到修订版...”
并选择“更新深度=完全递归”。
Instead of "SVN Update"
try "TortoiseSVN->Update to Revision..."
and select "Update Depth=Fully recursive".
当笔记本电脑上没有任何代码时,第一次运行 SVN Checkout,这会创建一个工作副本。
SVN 更新应在此工作副本(或子路径)上运行。更新只获取几个文件是正常的,因为它只获取修改
When starting with no code on the laptop, run SVN Checkout the first time, this creates a working copy.
SVN Update should be run on this working copy (or subpaths). It's normal for update to fetch only a few files, as it only fetches the modifications
只需创建一个要在其中创建文件的文件夹,然后右键单击该文件夹,然后从菜单中选择“SVN Checkout”即可。然后输入您的 URL 存储库。
如果您没有看到该菜单选项,那么 TortoiseSVN 一定没有正确安装。
Just create a folder you want to create the files to, then go up, right click on the folder, and choose "SVN Checkout" from the menu. Then enter your URL repository.
If you don't see that menu option TortoiseSVN must not have installed correctly.