bazaar共享存储库的优点
- 除了节省空间之外,共享存储库与独立存储库相比是否有优势? 例如,我可以按以下方式工作:
3个开发人员,每个开发人员都有本地独立树和绑定分支作为网络中的备份。 网守正在合并所有用户的网络位置,并将发布的版本推送到“正式版本”存储库中。 “正式版本”存储库也是独立的树
注意:我将它放在一个漂亮的绘图中,但我还无法将图像附加到此论坛...
提前致谢 吉尔·艾德尔森
- Except for space saving , does the shared repository have advantages compared to stand-alone?
for example , can i work in the following way :
3 developers , each has local standalone tree and bind branch as a backup in network.
the gatekeeper is merging from the network locations of all users and push the released version into "FORMAL VERSIONS" repo.
the "FORMAL VERSIONS" repo is also standalone tree
NOTE : i have it in a nice drawing , but i cant attach image to this forum yet...
Thanks from advance
Gil Idelson
如果多个分支具有共同的历史记录,则仅需要共享存储库来节省历史存储空间。节省空间的另一个选择是使用堆叠分支,当新分支堆叠在某个稳定分支(主干)上时。
此外,还可以运行 bzr qlog /path/to/shared-repo 来获取 QBzr GUI qlog 中共享存储库中所有分支的日志。
Shared repository required only to save space of history storage if several branches have common history. Another option to save space could be usage of stacked branches, when new branches stacked on the some stable branch (trunk).
Also, one can run
bzr qlog /path/to/shared-repo
to get the log for all branches in shared repository in QBzr GUI qlog.