Re: quilt-like feature, to support patch series

2019-12-16 Thread Paul Hammant
Subversion's missing piece is the patch-review system, agreed. Rietveld was 11.5 years ago (and Mondrian was 2 years before that - Perforce admittedly), so we have plenty of things to be inspired by. In the last year a "shelve" facility has been perfected for Subversion - https://cwiki.apache.org/

Re: quilt-like feature, to support patch series

2019-12-16 Thread Daniel Shahaf
wuzhouhui wrote on Tue, 17 Dec 2019 04:38 +00:00: > From: "Daniel Shahaf" > > To do this, I guess you'll want to write a script that automatically > > commits a patch series along with log messages (from `quilt header -e`)? > > If you do, please consider publishing it; it's not the first time this

Re: Re: quilt-like feature, to support patch series

2019-12-16 Thread wuzhouhui
> -Original Messages- > From: "Daniel Shahaf" > Sent Time: 2019-12-17 09:29:22 (Tuesday) > To: wuzhouhui > Cc: subversion > Subject: Re: quilt-like feature, to support patch series > > wuzhouhui wrote on Mon, 16 Dec 2019 06:57 +00:00: > > I do

Re: quilt-like feature, to support patch series

2019-12-16 Thread Daniel Shahaf
wuzhouhui wrote on Mon, 16 Dec 2019 06:57 +00:00: > I don't want to commit changes until I think the changes are good enough. > After > all, commit to a branch is also a commit. There is no technical requirement that commits to branches be as stable as commits to trunk; that's purely a social con

Re: Re: quilt-like feature, to support patch series

2019-12-15 Thread wuzhouhui
> -Original Messages- > From: "Daniel Shahaf" > Sent Time: 2019-12-16 12:37:07 (Monday) > To: wuzhouhui > Cc: Subversion > Subject: Re: quilt-like feature, to support patch series > > Nathan Hartman wrote on Sun, Dec 15, 2019 at 22:06:03 -0500: &

Re: quilt-like feature, to support patch series

2019-12-15 Thread Daniel Shahaf
Nathan Hartman wrote on Sun, Dec 15, 2019 at 22:06:03 -0500: > On Sun, Dec 15, 2019 at 5:03 AM wuzhouhui > wrote: > > > Hi, > > > > Can Subversion support patch series, like quilt. So I can split a > > big change to small pieces before submit all of them, and post-commit > > review will be more e

Re: quilt-like feature, to support patch series

2019-12-15 Thread Nathan Hartman
On Sun, Dec 15, 2019 at 5:03 AM wuzhouhui wrote: > Hi, > > Can Subversion support patch series, like quilt. So I can split a > big change to small pieces before submit all of them, and post-commit > review will be more easy. Not yet. (At least not that I know of.) Can you use a branch and late

quilt-like feature, to support patch series

2019-12-15 Thread wuzhouhui
Hi, Can Subversion support patch series, like quilt. So I can split a big change to small pieces before submit all of them, and post-commit review will be more easy. Thanks.