Ideas about additions for git-bz ================================ The presence of an idea here does not necessarily imply that I have any intention of working on it myself. - Owen Allow editing comment used for attachments When attaching a revised version of a patch, you really want to be able to edit the comment to say what has changed. 'attach' should support -e/--edit to do this. Also, you should be able to specify obsoletes - I think it would be interactive - if you passed -o/--obsolete it would display a numbered list of patches and you'd enter the number of the patch (or space separated list of numbers) of the patches to obsolete. Use XML-RPC when available. Maybe use python-bugzilla: http://fedorahosted.org/python-bugzilla/ Not sure there are a lot of advantages to this; one thing that it might be possible to do with this is allow the user to specify only the product and get an interactive list of components. Also, better error handling. Handle redirects: Should follow redirects, both to different URLs and http => https Better display of errors Currently specifying a non-existent product/component just dumps out raw HTML for the reply. Etc. More general patch application 'git bz apply' currently only handles patches formated with 'git format-patch', it should be able to apply general patches as well. For general patches, you would use information from bugzilla to prime the author and commit message, but allow further editing of the commit message. Make -u/--add-url kinder on the reflog -u works by resetting, then on each patch, running git cherry-pick followed by git commit --amend. It would be nice to only have one (informative) reflog entry for the entire process, or at least avoid the double commits.