Jesse, I have just started tracking a VB.NET /ASP.NET application in cvs and I had the same decision to make. I excluded the following files from cvs control:
Web.config (this contains specific config info like DB access that differs for each developer) *.webinfo (this stores the IIS URL associated with the project which is also different for each developer) *.sln *.suo *.pdb I excluded the above three types of files because they are derivable from all of the other project files. I added all five of these to the repository-wide cvsignore file so that they are automatically ignored for imports and adds. I created a separate repository for the Web.config and *.webinfo files so that each developer could check out a reasonable version of these files and copy them into their development directory when they first checkout a project. I have not used this setup in production yet so I am not sure how well it will work yet. Good luck, Mark ----- Original Message ----- From: "Jesse Quijano" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 10, 2003 2:23 PM Subject: OT-ish: Windows Question > All, > I'm a CVS newbie that has always used Visual Source Safe integrated with > Visual Studio. So, I've got my remote CVS repository setup and can > actually connect to it... no easy feat! I've also setup my directory > structure on CVS which I'm sure I'll have questions on later, but so far so > good there. > > What I want to do now is "add" my files to the proper places in the > repository. The question I have is which of the zillion VS generated files > should I store to get a build when they're checked out again? I plan to > checkin/add *.h, *.c (except dlldata.c and any *_i.c, or *_p.c generated > files), *.cpp, *.idl, *.rc, *.dsp, *.dsw, *.def. Does this seem > reasonable? Is there anything I'm missing? > > Thanks, > Jesse > > > > _______________________________________________ > Info-cvs mailing list > [EMAIL PROTECTED] > http://mail.gnu.org/mailman/listinfo/info-cvs > _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
