Versions Compared

Key

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

...

This sections lists several typical tasks that users and developers will perform frequently. It implies that the SIT environment has already been setup as explained in Environment setup.

Before issue any of To use commands listed below make sure that you use correct it is recommended to use the psdev gateway

ssh psdev;

check from psdev that ssh yakut works for you (come back to psdev);
kindly ask Andy to add you account to our AFS group;
use correct sequence of SVN commands.

...

svn update <package>
psvn -p <package> tag V01-02-03

Examples

Create a new package

This example shows how to (1) create a new release, (2) to create new package, (3) add directories and modules, (4) commit to svn, and (5) set a tag.

Code Block

ssh psdev
cd <directory-with-your-favorite-releases>

newrel ana-current <your-release-directory>
cd <your-release-directory>
sit_setup

psvn newpkg <new-package>
addpkg <new-package>

cd <new-package>
mkdir <new-directory>
cp <path>/<module1> <new-directory>/<module1>
cp <path>/<module2> <new-directory>/<module2>
...
edit <module1>
...
svn add <new-directory>

   or

svn add <new-directory>/<module1>
svn add <new-directory>/<module2>

svn commit \-m "Add your comment here"

psvn tag V01-00-01

Edit existing package

Code Block