Skip to content

Instantly share code, notes, and snippets.

@cheuerde
Last active August 29, 2015 14:04
Show Gist options
  • Save cheuerde/159461e52252798f420b to your computer and use it in GitHub Desktop.
Save cheuerde/159461e52252798f420b to your computer and use it in GitHub Desktop.
Using SVN (Subversion) for package submission on Rforge #install #R
# get svn:
sudo apt-get install subversion
# get the svn-repository you are working with (e.g. Rforge project)
svn checkout svn+ssh://cheuer@r-forge.r-project.org/svnroot/cgen/
# a local folder on your machine will be created in the place from where
# you executed the command.
# add a folder/package: switch to your local project folder and do:
cd pkg
svn add cgen
svn commit
# delete:
svn delete cgen
svn commit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment