Pushing from subversion to web server

前端 未结 7 647
既然无缘
既然无缘 2021-01-31 10:23

Long ago I tried to sort out my system between local, web server and subversion. I got some good explanation on this question.

Unfortunately I hit a road block on the w

7条回答
  •  春和景丽
    2021-01-31 11:01

    simply - login to your server machine and checkout the repository contents. This should be done just once.

    $ svn checkout [http|svn|whatever_you_got_there]://{your_svn_repo} {checkout_directory}
    

    Everytime you need to update your working copy with the newest one, perform update:

    $ cd {checkout_directory}
    $ svn update
    

提交回复
热议问题