Hets: access to the svn repositories
Choose a password. Passwords should contain at least one non-letter. Passwords must be 6, 7 or 8 characters long.
Use htpasswd (or htpasswd2) that may be found under usr/sbin to create an encrypted password and send it (together with your non-secret username) to Christian.Maeder@dfki.de
(Also Hets/trunk/utils/mkcrypt.pl can be used to create an encrypted password)
> htpasswd2 -c temp.txt <username> New password: Re-type new password: > cat temp.txt
Checking out the svn repository
svn co https://svn-agbkb.informatik.uni-bremen.de/Hets/trunk Hets
Similary, the repositories Hets-lib, Hets-OMDoc, uni and izpack (without trunk) may be checked out.
Login (top-left corner) and add your email-address under Settings to get informed about your tickets
The svn working cycle
http://svnbook.red-bean.com/nightly/en/svn.tour.cycle.html
The typical work cycle looks like this:
- Update your working copy
svn update
- Make changes
svn add svn delete svn copy svn move
- Examine your changes
svn status svn diff
- Possibly undo some changes
svn revert
- Resolve Conflicts (Merge Others' Changes)
svn update svn resolved
- Commit your changes
svn commit