Re: [Mutsu-developers] Re: any progress on CVS ??
Status: Beta
Brought to you by:
mfenner
|
From: Martin F. <ma...@sc...> - 2002-02-13 18:13:11
|
Loek, > Sounds very interesting, but unfortunately this command doesn't run on > my computer.... > "MainMenu.nib Command not found" The following line only works if your CVS server supports wrapping: *.nib -k 'b' -f '/Developer/Tools/cvs-unwrap %s' -t '/Developer/Tools/cvs-wrap %s %s' -m 'COPY' If you use the CVS server that comes with the Developer Tools (i.e. a local CVS server on your OS X computer), wrapping should work. > Also if I try to manually commit a .nib to the repository, I still > don't manage (see below): > > (I first checked out the existing splitandconcat module, then changed > all files into the > new ones and wanted to first commit the important MainMenu.nib to find > out that it > doesn't work.... > > [node13269:~/Dev/splitandconcat] loek% cd English.lproj/ > [node13269:~/Dev/splitandconcat/English.lproj] loek% cvs commit -m > MainMenu.nib/ > cvs commit: Examining . > cvs commit: Examining MainMenu.nib > cvs commit: Examining MainMenu~.nib > ? MainMenu.nib/Spliticon.gif.tiff > cvs server: Up-to-date check failed for `MainMenu.nib/info.nib' > cvs server: Up-to-date check failed for `MainMenu.nib/objects.nib' > cvs [server aborted]: correct above errors first! > [node13269:~/Dev/splitandconcat/English.lproj] loek% cvs add > MainMenu.nib/ > cvs [add aborted]: there is a version in MainMenu.nib already > This is tricky. I would say it's best to view MainMenu.nib as directory (there is also a CVS directory in MainMenu.nib, therefore the error in your last line). This means that you should add and commit the files in this directory, e.g. objects.nib. We should also think about what we should add to the CVS repository. The "build" directory for example is not needed as it can be recreated from the sources. - Martin |