Repository

SVN Location

  • svn+ssh://user
    @
    rzrepository.informatik.uni-hamburg.de/informatik/isr/nats/repositories/praktikum11
    • $SVN_ROOT/trunk : current WIP code
    • $SVN_ROOT/tags : stable versions
    • $SVN_ROOT/branches : experiments/externals

How to checkout trunk

Plain SVN:

$> svn co svn+ssh://{your_username}
@
rzrepository.informatik.uni-hamburg.de/informatik/isr/nats/repositories/praktikum11/trunk {desired_foldername}

Using Git:

$> git svn clone svn+ssh://{your_username}
@
rzrepository.informatik.uni-hamburg.de/informatik/isr/nats/repositories/praktikum11/trunk {desired_foldername}

How to commit to trunk

  • Make tiny commits
  • Do not forget to include a comment in every commit
  • Do an update before each commit to avoid conflicts

Plain SVN:

$> svn add {potential_new_files}

$> svn update

$> svn commit -m "Do not forget a comment"

Using Git:

$> git add {potential_new_files}

$> git commit -a

$> git svn rebase

$> git svn dcommit

-- LidiaKhmylko -- 20 Feb 2011

 
This site is powered by FoswikiCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding Foswiki? Send feedback