Tag-Archiv: 'subversion'

“Ich lese nie Dokumentation”

Aussage eines externen Consultants (Programmierer): "Ich lese nie Dokumentation, jedenfalls nicht was Tools wie die Versionskontrolle betrifft. Die Hilfe für VSS hab ich auch nie gelesen.".   (Auf die Bitte, einen Subversion-Checkout durchzuführen, stellte sich heraus, dass dieser Entwickler gar nicht wusste, was ein Checkout ist. Daraufhin meine Bitte, die Dokumentation auf http://subversion.tigris.org zu lesen.). [...]

Subversion + Linux

Für /etc/init.d/svnserve liegen die Einstellungen in /etc/sysconfig/svnserve, standardmäßig wwwrun:www.

Subversion – Recursive call for backup scripts

Here’s a solution how to call the backup scripts from http://subversion.tigris.org/tools_contrib.html#server_side: # Full backup – not good if you have a Berkeley DB upgrade… find /srv/svn/repos/ -type d -maxdepth 1 -mindepth 1 -exec python hot-backup.py {} /srv/svn/backup/ –archive-type=bz2 \; # Dumped and bzipped find /srv/svn/repos/ -type d -maxdepth 1 -mindepth 1 -exec python svn-backup-dumps.py -b [...]