Bazar 存储库 - 分支和的概念
大家好 我正在为 Bzr 编写一个存储库适配器。这是针对搜索引擎的,适配器允许我与某些 bzr 存储库进行通信、检查连接、签出或更新项目。 (无需提交、推送或创建存储库) 现在我对 Bzr 和其他 SCMS 的细节也没有太多经验,并且对其分支概念感到困惑。 我用 --> bzr checkout Branchlocation mylocallocation -- 签出项目 和 --> bzr ls URlwithbranchname --测试存储库。
- 互联网上有没有包含基本初学者信息的教程?关于 BZR 组织的分支机构和结构。 我已经浏览过规范网站了。
- 有什么方法可以在存储库名称或项目名称而不是分支名称上运行结帐或列出吗?
- 对于结帐/列表,我是否也需要处理存储库上的用户名/通行证身份验证?
- 另外,我仍然不确定 ssh、sftp、ftp 服务器上的 bzr。允许从这些服务器结帐是否是额外的功能? 喜欢身份验证?或任何类型的手柄。我知道结帐适用于纯 http。
任何类型的基本文档对于我对 bzr 的天真都会非常有帮助。
Hi all
I am writing a repository adapter for Bzr. This is for a search engine where adapter lets me communicate to some bzr repo, check the connection, checkout or update the projects. (No commit, push or create repos)
Now i dont have much experience with Bzr and such details of other scms too and get confused with its branches concept.
I use
--> bzr checkout branchlocation mylocallocation -- to checkout projects
and
--> bzr ls URlwithbranchname --to test repo.
- Is there any tutorial on internet with basic beginners information? about branches and structure of bzr organization.
I have gone through canaonical website already. - Any way to run checkout or list on repo name or project name, not on branch name?
- For checkout/list, do i need to take care of username/pass authentication on repo too?
- Also I am still not sure about bzr over ssh, sftp, ftp servers. Would it be extra functionality to allow checkout from these servers.
like authentication? or any kind of handle. I know checkout works for plain http.
Any kind of basic documentation would be very helpful for me being naive to bzr.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
bzr brothers
命令列出存储库或普通目录下的所有分支。我认为您可以使用 qbzr 插件中的bzr qlog
查看存储库中所有分支的组合日志。bzr branches
command from the bzr-tools plugin. I think you can view the combined log of all the branches in a repository usingbzr qlog
from the qbzr plugin.