Question

Is there a gui commit tool for bzr, similar to git gui? The most important feature for me would be ability to break edits into separate commits.

Was it helpful?

Solution

QBzr/Bazaar Explorer should be part of the downloadable binaries (or can be installed as plugins, though that may require installing Qt and PyQt first).

The commands you're looking for are qcommit, qshelve, and qunshelve. The qcommit command allows you to select which files to commit, but like commit does not allow you to selectively commit only individual hunks within a file. Conversely, qshelve, like shelve, allows you to shelve changes at a finer granularity (i.e., individual hunks). Shelving can be reverted with qunshelve or unshelve commands.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top