How to create and delete SVN repositories

How to create and delete SVN repositories

Since the svnadmin command does not provide a command to delete the repository, delete the repository normally.

rmdir -rf repositry_name

To create a repository, execute the following command

svnadmin create repositry_name

Chmod everything to 775. (Not exactly all of them are needed)

find ./ -type f -print | xargs chmod 775

If you are working with Bitnami Redmine, the group must be daemon.

chown -R daemon:daemon

This area should be described in httpd.conf of apache, so you should check it before making any changes. httpd.conf should contain the following description.

User daemon
Group daemon

コメント

Discover more from 株式会社CONFRAGE ITソリューション事業部

Subscribe now to keep reading and get access to the full archive.

Continue reading

Copied title and URL