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 on开发者_运维技巧ly get that single paragraph back. Is there a way to do this in bazaar?
Use bzr shelve --destroy
to shelve the changes (a-la git stash
) and kill them.
精彩评论