root@piggy:~# cat svk-etc-anlegen.sh
- Install svk
apt-get install svk
- Initialize a depot in /root/.svk
svk depotmap --init
- Import /etc making it a working copy
svk import --to-checkout -m"inital" //etc /etc
- Make your depot not that readable
chmod -R go-rwx ~/.svk
- Remove volatile files from revision control
cd /etc svk rm -K adjtime ld.so.cache
SVK Howto
- svk help:
svk help intro
Welche Verzeichnisse werden mit svk verwaltet ?
svk ls //
SVK alle Änderungen Committen
1. Neue Dateien dazu
svk add .
2. Welche Dateien wurden gelöscht die noch im Repo sind ?
svk st | grep "\!" svk revert datei svk del datei
3. Committen
svk commit -m"Stand 06/2008: funktioniert gut, Feisty stable, Hardy Testing"

Kommentar hinzufügen