From: Moez A. Abdel-G. <mo...@cs...> - 2004-01-26 23:16:14
|
For new DrJava hackers (new COMP 312'ers, who would soon be adding new unit tests, and possibly new files to DrJava), the following pipelined commands may be helpful for knowing which files are new, and thus need to be added via "cvs add" to the cvs repository: cvs -qn update | grep ^? | tr -d '^?' | tr -d "[:space:]" More details are available at http://ccvs.cvshome.org/fom//cache/42.html In fact, according to that link, there seems to be some way we can automate the "cvs add" in our ant targets, instead of requiring it to be done manually. -Moez |