[cvs, sticky attributes] * Melchior FRANZ -- Wednesday 20 October 2004 15:21: > You can bring all files back to HEAD with the -A option. If you use the -C > option as well, then even your locally changed filea are saved away > (.#foo.cxx.1.123) and overwritten by the HEAD files.
$ cvs up -A $ cvs up -AC Of course, you can easily check if you have anything sticky around. List all files with sticky attributes: $ for i in `find -name Entries`; do egrep -v "/$" $i|egrep -v "^D$"; done and find all directories with sticky attibutes (tags): $ find|grep CVS/Tag Happy hunting! :-) m. _______________________________________________ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel 2f585eeea02e2c79d7b1d8c4963bae2d
