Wiki ⇒ Running Dragonfly CVS ⇒ Using SSH
Glossary
The Project
Install
Dragonfly admin interface
Dragonfly public view
Dragonfly Themes
Build local server
Running Dragonfly CVS
Tips and Tricks
Rules & Regulations
v9 Developer's Manual
v10 Developer's manual
|
9.1: Using SSH  A guide to using Shell to update your CVS website NOTE: everything is case-sensitive so where you see uppercase characters we do mean uppercase
If you want your CVS files to be located in a sub-directory on your website named "html" (mydomain.tld/html/), then run the following command in your SSH prompt:
cvs -d :pserver:anonymous@dragonflycms.org:/cvs checkout html
OR if you want your CVS files in the root directory of your website (mydomain.tld/), then follow these steps:
- Create a new directory named cvs:
mkdir CVS
- In that directory, create a new file named "Repository", which contains only one line:
html
- Create another file in that directory named "Root", which contains only one line:
:pserver:anonymous@dragonflycms.org:/cvs
- Create another file in that directory named "Entries", which will be empty
- Run the following command in your SSH prompt:
cvs -q -z6 update -Pd
If you find that you want to move the CVS files into the root directory after using option one, then run this command in your SSH prompt:
mv --force html/* public_html
Installing the CVS
After you have obtained all of the files from the CVS, you can begin the installation process as described here.
Staying CurrentWhenever you wish to update your files with the latest files from the CVS, you can run the following command in your SSH prompt, which will update ALL files:
cvs -q -z6 update -Pd
This command will update only the files in the current directory:
cvs -q -z6 update -Pdl
Announcements and additional information regarding the CVS can be found in our CVS Forum.
|
| |
Updated: Thursday, October 08, 2009 (00:43:24) by DJ Maze Created: Tuesday, February 22, 2005 (22:55:49) by Trevor |

|