Re: Reading Commits From External File
From: Ryan Schmidt <subversion-2006q2_at_ryandesign.com>
Date: 2006-05-23 11:49:22 CEST
On May 23, 2006, at 11:20, Michael Pickard wrote:
> I would like to adapt an existing bash script so that rather than
How about:
cat filenames.txt | xargs svn commit -m "Passed testing"
(if you wanted one commit containing all files) or
cat filenames.txt | xargs -n 1 svn commit -m "Passed testing"
(if you wanted one commit per file).
Paths containing spaces may not be handled properly by the above;
---------------------------------------------------------------------
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.