First page Back Continue Last page Overview Graphics
Adding a File (1/2)
Let's write a haiku:
cd ~/test-new-project/trunk/
cat >haiku.txt <<'EOF'
CVS no good?
Subversion to the rescue:
Branching is easy!
EOF
Just like CVS:
svn add haiku.txt
And just as in CVS, adding something to the repository is a two-step process; you must commit your changes to the repository:
svn commit -m 'added' haiku.txt
(more on committing later)
Notes: