Is there any way to install the file in the SVN repository. to automatically ignore when placing an order?

I would like to include project files and other configuration files in my SVN repo. but they don’t want the changes to be returned to the repo. So, there is a way to install files on the server / repo. end, so that when they are checked, they are automatically ignored?

+4
source share
1 answer

The usual way to resolve this issue is to not put real configuration files into the repository. Instead of

config/whatever.cfg 

in your repository, save

 config/whatever.cfg.example 

and then manually copy config/whatever.cfg.example to config/whatever.cfg when you check the repository and configure it for your local environment.

+4
source

Source: https://habr.com/ru/post/1447104/


All Articles