| Issue 3: | SVN Setting | |
| 1 person starred this issue and may be notified of changes. | Back to list |
|
SVN Setting
Dec 20, 2008
Project Member
#1
JieQian2...@gmail.com
Dec 20, 2008
How to checkout your files? To start manipulating repository data, you need to create a new “working copy” of the data, a sort of private workspace. Ask Subversion to “check out” a working copy of the myproject/trunk directory in the repository: $ svn checkout file:///var/svn/repos/myproject/trunk myproject A myproject/foo.c A myproject/bar.c A myproject/Makefile … Checked out revision 1. Now you have a personal copy of part of the repository in a new directory named myproject. You can edit the files in your working copy and then commit those changes back into the repository.
Jan 8, 2009
Thanks. I checked my code in. svn import qifei file:///home/qifeirepos -m "initial import" Next time when you start writing real code. checkout qifei to your workspace and do the work in there. Every time before you start working, Sync with SVN before you start. |
||||||||