Skip to content

Instantly share code, notes, and snippets.

@ishikawa
Created July 26, 2008 03:03
Show Gist options
  • Save ishikawa/2586 to your computer and use it in GitHub Desktop.
Save ishikawa/2586 to your computer and use it in GitHub Desktop.
Subversion quickstart
creating the Subversion repository
% svnadmin create --fs-type fsfs path-to-svn-repos
% mkdir tmp
% cd tmp
% mkdir webframework
% cd webframework
% mkdir trunk branches tags
% cd ..
% svn import . file:///path-to-svn-repos --message 'Initial repository layout'
check client
% REPOS=svn+ssh://host/path-to-svn-repos
% svn list $REPOS
importing into the repository
% cd ~/Developer/Workspace/Eclipse/projectA/
% svn checkout $REPOS/projectA/trunk .
% svn add --force .
% svn revert --recursive build/*
% svn revert --recursive docs/*
% svn propset svn:ignore '*' build
% svn propset svn:ignore '*' docs
commit
% svn commit -m 'Initial project.'
Subclipse
http://subclipse.tigris.org/update_1.0.x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment