Reputation: 2594
I'm wondering how to do git clone --depth HEAD
with BZR, because I don't need the whole branch history.
Upvotes: 3
Views: 501
Reputation: 10967
What you are looking for is called a lightweight checkout in Bazaar.
Upvotes: 2
Reputation: 165200
Bazaar supports lightweight checkouts with the --lightweight
switch.
bzr checkout --lightweight lp:openshot
Upvotes: 5