Joe Simpson
Joe Simpson

Reputation: 2594

What's the bzr equivalent to git clone --depth HEAD

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

Answers (2)

robince
robince

Reputation: 10967

What you are looking for is called a lightweight checkout in Bazaar.

Upvotes: 2

Schwern
Schwern

Reputation: 165200

Bazaar supports lightweight checkouts with the --lightweight switch.

bzr checkout --lightweight lp:openshot

Upvotes: 5

Related Questions