Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sometimes you'll need to add a new file to your module.  The first thing to do is is to change to the folder in your module where you want to place the new file:.  This is because the "cvs add" command does not recurse down directories.

Code Block
cd module/path

then you can add your new file if it is not already there.  As purely an example:

Code Block
touch example.txt

...

When you've made changes to file(s), it's time to update the changes from your local copy to the server.

...