On Thu, Dec 26, 2002 at 10:30:46AM -0800, Marilyn Davis wrote: > I'm messing up somehow. I give this command: > > [root@Xoko mailman]# cvs diff -N -u > /tmp/eVote-patch.txt > > But my patch starts like: > > ? bin/eVote_queries.py > ? templates/eVote.txt > ? templates/eVotePetition.txt > > and those files aren't in there.
"cvs diff" only looks in checked-out + cvs-added files. If you create brand new files (instead of changing existing ones) cvs diff will ignore them.... unless you "cvs add newfile" before diffing. Therefore, you should: 1. cvs add any new file 2. cvs diff -N -u info:/cvs for details. -- Adde parvum parvo magnus acervus erit. Simone Piunno, FerraraLUG - http://members.ferrara.linux.it/pioppo _______________________________________________ Mailman-Developers mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-developers
