you will need to perform the delete and ignore operation
- first back up the local file (e.g. @ibz)
- then delete the web.config file from the repository.
- then copy the web.config file to the same folder
- Finally, use svn: ignore so that subversion does not try to add it again to the repository
since I use tortoisesvn, I can’t tell you which svn commands you should use, but using tortoisesvn it will be:
- make a backup
- right-click on web.config in the folder under source control, select TortoiseSVN | Delete
- right-click on web.config in the source folder, select SVN Commit => then you will notice that the file is actually deleted from the file system.
- move up and right-click on the folder under source control, select TortoiseSVN | The properties
- in the properties window, click the new + property name "svn: ignore"; property value "web.config". accept changes
- commit changes
in my .net projects, I include the following exception with svn: ignore: bin, obj, * .suo, * .user
source share