Re: Feature request: expand wildcards

2011-01-05 Thread Ed Avis
Daniel Shahaf d.s at daniel.shahaf.name writes: svn commit --changelist :glob:'*.foo' From my point of view that would be useful, if combined with a warning message: No file matching '*.foo' - to expand wildcards, say svn commit --changelist :glob:'*.foo' Thanks for producing the

Re: Feature request: expand wildcards

2011-01-05 Thread Daniel Shahaf
Ed Avis wrote on Wed, Jan 05, 2011 at 12:52:39 +: Daniel Shahaf d.s at daniel.shahaf.name writes: svn commit --changelist :glob:'*.foo' From my point of view that would be useful, if combined with a warning message: No file matching '*.foo' - to expand wildcards, say svn

Re: Feature request: expand wildcards

2011-01-05 Thread Ed Avis
Daniel Shahaf d.s at daniel.shahaf.name writes: No file matching '*.foo' - to expand wildcards, say svn commit --changelist :glob:'*.foo' This can't be implemented in svn itself: for example, my shell simply raises an error (without running the program) if a wildcard failed to match

Feature request: expand wildcards

2011-01-04 Thread Ed Avis
Hi, this is a feature request for the command-line svn client. I am posting it here rather than in the issue tracker directly. It is slightly related to the earlier thread http://article.gmane.org/gmane.comp.version-control.subversion.user/36113 but not exactly the same issue. If you remove

Re: Feature request: expand wildcards

2011-01-04 Thread Daniel Shahaf
It's hacky, but: svn commit --changelist :glob:'*.foo' where the changelist is then interpreted as a glob pattern (let's say apr_fnmatch()). Thoughts? Ed Avis wrote on Tue, Jan 04, 2011 at 14:48:21 +: Hi, this is a feature request for the command-line svn client. I am posting it

Re: Feature request: expand wildcards

2011-01-04 Thread Daniel Shahaf
Daniel Shahaf wrote on Tue, Jan 04, 2011 at 22:22:18 +0200: It's hacky, but: svn commit --changelist :glob:'*.foo' where the changelist is then interpreted as a glob pattern (let's say apr_fnmatch()). Thoughts? That wasn't hard: [[[ % $svn st -q M

Re: Feature request: expand wildcards

2011-01-04 Thread Daniel Shahaf
Stefan Sperling wrote on Tue, Jan 04, 2011 at 22:44:49 +0100: On Tue, Jan 04, 2011 at 10:47:52PM +0200, Daniel Shahaf wrote: Daniel Shahaf wrote on Tue, Jan 04, 2011 at 22:22:18 +0200: It's hacky, but: svn commit --changelist :glob:'*.foo' where the changelist is then

Re: Feature request: expand wildcards

2011-01-04 Thread Stefan Sperling
On Wed, Jan 05, 2011 at 12:26:30AM +0200, Daniel Shahaf wrote: (btw, do we have a way to say except files in $this changelist?) I don't think we do.