Here are a number of problems I encountered while playing with uncommit with 0.10: - uncommit ignores grafts. This causes "uncommit -n" to through "graft merges" without asking, and surely gives unexpected result when a graft is used to change an ancestor rather than adding one. - the previous behaviour causes strange interactions with merge commits (eg. "stg show" cannot show the diff) - uncommit could allow to go through a merge (indeed ignoring grafts as it did was a gain of time for me, since it was in a couple of cases precisely what I wanted to do ;). One possible interface to such a feature would be to allow this if HEAD is the merge, and the branch to follow is explicitely specified. The issue mentionned above seems to indicate that when uncommitting a merge, a new commit for the newly-uncommitted patch has to be created right away, to ensure it has a single parent. - uncommit could be more flexible to help with mass-uncommitting, eg. with something like "--to <commit>" (to avoid counting manually), or "--to-merge" to cleanly stop on first merge instead of failing there. This may have an impact on how uncommits are numbered. - uncommit synopsis is incomplete (lacks " | -n <n> <basename>") - after mass-uncommitting, more help to look at the stack would be needed. Eg. a "stg series" flag to print more commit info (author, files), or to limit the listing to a given author (like "stg patches" limits for a file). Additionally, a couple of non-uncommit-related thing: - when a push is not committed because of a conflict, looking at the previous diff for the patch would help. Maybe something like "stg show --old" ? - the help string for push should say "patches", and possibly document more precisely the syntax, something like: --- a/stgit/commands/push.py +++ b/stgit/commands/push.py @@ -24,8 +24,8 @@ from stgit.utils import * from stgit import stack, git -help = 'push a patch on top of the series' -usage = """%prog [options] [<patch1> [<patch2>...]] +help = 'push patches on top of the series' +usage = """%prog [options] [<patch1> [<patch2>...] | -n <n> <patchroot>] Push a patch (defaulting to the first unapplied one) or range of patches to the stack. The 'push' operation allows patch reordering by - "push --undo" is not robust. On the occasion reproduced below, I had to rollback the push myself by hand-modifying the stgit data, which took me some effort. I'll have to gather precise info, but the issue occurs on patch reordering, on a genuine conflict, and seems to be involve a change to a non-existent file, when that file would have been added by a non-applied patch originally below the one I attempted to apply. I do agree there is a conflict, but "push --undo" should definitely be able to rollback in any case. Here is the log: ======== Now at patch "patch9" Pushing patch "patch10"...The merge failed during "push". Use "refresh" after fixing the conflicts stg push: GIT index merging failed (possible conflicts) stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them stg push: local changes in the tree. Use "refresh" to commit them ydirson$ stg push --undo Undoing the "patch10" push...stg push: ['git-diff-index', 'HEAD', 'path/to/the/file.java'] failed (fatal: ambiguous argument 'path/to/the/file.java': unknown revision or path not in the working tree. Use '--' to separate paths from revisions) ======== Best regards, -- Yann Dirson <ydirson@xxxxxxxxxx> | Debian-related: <dirson@xxxxxxxxxx> | Support Debian GNU/Linux: | Freedom, Power, Stability, Gratis http://ydirson.free.fr/ | Check <http://www.debian.org/> - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html