First page Back Continue Last page Overview Graphics
Importing an Existing Project
Create the repository
svnadmin create --fs-type fsfs \
/home/jmglov/svnroot/test-exist-project
Create the project skeleton directory and copy the project files into it:
for i in branches tags trunk; do
mkdir -p test-exist-project/$i
done
rsync -av ~/coding/exist-project/ \
~/test-exist-project/trunk/
Import the skeleton, then checkout the project as for the new project
Notes: