svn notes (2)

1. Create project management content in the root directory
d:\svn\root> svnadmin create hello

2. svn import project

First enter the project path in cmd mode

d:/download/java/hello
There is a project called helloworld Project folder
svn import -m "hello" helloworld svn//localhost/hello The localhost/hello
here is what we created in the first step.

3. Checkout the project
cd to the path where you want to put the project, and then enter
svn co svn://localhost/ hello
and the content of the project will be taken out.

4. Users upload (submit) projects
In their own project path, enter

svn -ci -m "xxxx"

5. Other users get projects through checkout
In the user's project directory, enter
svn checkout svn://localhost/hello

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326728810&siteId=291194637
svn