Reputation: 40669
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
Reputation: 21473
Use bzr shelve --destroy
to shelve the changes (a-la git stash
) and kill them.
Upvotes: 1