Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在启动板上下载分支(很大)时,我通过对等错误重置连接。我想知道launchpad有下载器吗?此外,如果有恢复功能,那就太棒了。我在命令行上使用 bzr 顺便说一句。
提前致谢!
PS我正在使用Ubuntu
一些项目可能会提供主分支的 tarball 供下载。否则,您应该尝试一次只进行几个修订,例如。
bzr branch -r100 lp:<project> cd <project> bzr pull -r200
等等。有一天修复/自动化这个会很好。Bazaar 将始终保留它成功下载的内容,但有时它可能会尝试一次获取太多网络。
您可以使用无历史记录的轻量级结帐:
bzr checkout --lightweight lp:<project>
Bazaar 文档中的更多详细信息。