[Python-Dev] CVS: python/dist/src/Objects dictobject.c,2.65,2.66

Andrew Kuchling akuchlin@mems-exchange.org
Thu, 30 Nov 2000 14:18:29 -0500


On Thu, Nov 30, 2000 at 11:12:54AM -0800, Greg Stein wrote:
>Not sure what -j does, but you can just do a reverse diff. For example:
>
>$ cvs diff -r2.66 -r2.65 dictobject.c > reverse.patch

-j basically does the work for you; you could do:
$ cvs update -j2.66 -j2.65 dictobject.c 

And then do a commit.  See the CVS book: 
http://cvsbook.red-bean.com/cvsbook.html#Examining%20And%20Reverting%20Changes

--amk