Alexander Bird
Alexander Bird

Reputation: 40669

bzr revert only a hunk? (bzr version of "git checkout --patch")

I deleted about a paragraph in code, then did bzr commit -m "temp commit" and what to only get that single paragraph back. Is there a way to do this in bazaar?

Upvotes: 1

Views: 111

Answers (1)

bialix
bialix

Reputation: 21473

Use bzr shelve --destroy to shelve the changes (a-la git stash) and kill them.

Upvotes: 1

Related Questions