> This is actually what prompted me to ask the question to begin with ... > If it's done with a single "push", is this actually a problem? Who > would this ultimately irritate? Wouldn't it be better than the same > number done individually?
Multiple changesets in a single changegroup is an acceptable, graceful, non-annoying way to do things. It's also not well supported with our tools. You basically need to keep a "push" workspace, with children for each separate changeset, so you can keep them separate. Or use mq, which we don't support. > Yes, but is there a way to easily "back out" the initial commit (per > file) in favor of a new one? Only if it's done as a separate changeset. If so, "hg backout" is your friend. --Mark