> hunk ./src/Darcs/UI/Options/All.hs 1027
> +-- | push; same as 'reorder' but with help descriptions swapped
> +reorderPush :: PrimDarcsOption Reorder
> +reorderPush = withDefault NoReorder
> + [ RawNoArg [] ["reorder-patches"] F.Reorder Reorder
> + "put remote-only patches on top of local ones"
> + , RawNoArg [] ["no-reorder-patches"] F.NoReorder NoReorder
> + "put local-only patches on top of remote ones" ]
Local and remote are a bit confusing to me here given we're talking
about the other repo. Maybe we should be more explicit by saying
things like "put patches that are only in the other repository on top
of the ones that are present in this repository"? It's a bit verbose though.
Rest of the code looks fine.
|