First page Back Continue Last page Overview Graphics
Importing a New Project
Create the repository
svnadmin create --fs-type fsfs \
/home/jmglov/svnroot/test-new-project
Create the project skeleton directory:
for i in branches tags trunk; do
mkdir -p test-new-project/$i
done
Import the skeleton:
cd test-new-project
svn import -m 'initial import' \
file:///home/jmglov/svnroot/test-new-project
Checkout the project:
cd ..
rm -rf test-new-project
svn co file:///home/jmglov/svnroot/test-new-project
Notes: