Is it possible to exclude some files from checkin (TFS) ?
Posted
by Thomas Wanner
on Stack Overflow
See other posts from Stack Overflow
or by Thomas Wanner
Published on 2010-02-12T14:46:46Z
Indexed on
2010/04/02
3:43 UTC
Read the original article
Hit count: 282
version-control
|tfs
|visual-studio-team-system
|visual-studio-2008
|configuration-files
We use configuration files within various projects under source control (TFS), where each developer has to make some adjustments in his local copy to configure his environment. The build process takes care about replacing the config files with the server configuration as a part of the deployment, so it doesn't actually matter what is in the repository. However, we would anyway like to keep some kind of a default non-breaking version of config files in the repository, so that e.g. people not involved in the particular project won't run into troubles because of local misconfiguration.
We tried to resolve this by introducing the check-in policy that simply forbids to check-in the config files. This works fine, but just because we're lazy to always uncheck those checkboxes in the pending changes window, the question comes : is it possible to transparently disable the check-in of particular files without keeping them out of source control (e.g. locking their current version) ?
© Stack Overflow or respective owner