user1841829
user1841829

Reputation:

Bzr gui commit tool - is one there?

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.

Upvotes: 1

Views: 54

Answers (1)

Reimer Behrends
Reimer Behrends

Reputation: 8730

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.

Upvotes: 2

Related Questions