Reputation: 63
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.
Any kind of basic documentation would be very helpful for me being naive to bzr.
Upvotes: 0
Views: 848
Reputation: 5505
bzr branches
command from the bzr-tools plugin. I think you can view the combined log of all the branches in a repository using bzr qlog
from the qbzr plugin.Upvotes: 1