Re: Command-line multi-line messages for commit

2003-06-08 Thread Thomas S. Urban
On Sun, Jun 08, 2003 at 13:07:59 -0400, Greg A. Woods sent 1.5K bytes: > [ On , June 8, 2003 at 10:46:45 (+0300), Stephen Biggs wrote: ] > > Subject: Re: Command-line multi-line messages for commit > > > > Actually, your method sounds to me much more painful because I have to

Re: Command-line multi-line messages for commit

2003-06-08 Thread Greg A. Woods
[ On , June 8, 2003 at 10:46:45 (+0300), Stephen Biggs wrote: ] > Subject: Re: Command-line multi-line messages for commit > > Actually, your method sounds to me much more painful because I have to > learn how to use sed to do this and run and test the wrapper script over > and ove

Re: Command-line multi-line messages for commit

2003-06-08 Thread Stephen Biggs
On Wed, 2003-06-04 at 02:44, Eric Siegerman wrote: > On Tue, Jun 03, 2003 at 12:46:42PM +0300, Stephen Biggs wrote: > > I got it to work using another way which actually works better if you > > don't want to be so interactive (one press of the enter key instead of > > 3): > > > > $ cvs ci -m "line

Re: Command-line multi-line messages for commit

2003-06-04 Thread Eric Siegerman
On Tue, Jun 03, 2003 at 12:46:42PM +0300, Stephen Biggs wrote: > I got it to work using another way which actually works better if you > don't want to be so interactive (one press of the enter key instead of > 3): > > $ cvs ci -m "line 1"'$\n'"line 2"'$\n'"line 3" Yikes! Non-interactive it may b

RE: Command-line multi-line messages for commit

2003-06-03 Thread Stephen Biggs
;"line 2"'$\n'"line 3" On Tue, 2003-06-03 at 11:02, Lemke, Michael IZ/HZA-IC1 wrote: > > -Original Message- > > From: Stephen Biggs [mailto:[EMAIL PROTECTED] > > Sent: Sunday, June 01, 2003 11:12 AM > > To: [EMAIL PROTECTED] > >

Re: Command-line multi-line messages for commit

2003-06-03 Thread Mark D. Baushke
Stephen Biggs <[EMAIL PROTECTED]> writes: > Greetings all, > > How do I enter in multi-line log messages when I want to commit? There are two typical ways to do this. Use either cat < logmessage This is a multiline log message. EOF cvs commit -F logmessage or cvs commit -m 'This i

Command-line multi-line messages for commit

2003-06-03 Thread Stephen Biggs
Greetings all, How do I enter in multi-line log messages when I want to commit? I tried using "\n", "\\n", "^L" in the quoted text string for the "-m" option but no go; all are on the same line with the quoted string in the log message. Running bash on Linux, Redhat 8.0. I tried embedding for b