Problem:
Failed to load JavaHL Library. These are the errors that were encountered: no libsvnjavahl-1 in java.library.path no svnjavahl-1 in java.library.path no svnjavahl in java.library.path java.library.path = /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/client:/usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386:/usr/lib/xulrunner-addons:/usr/lib/xulrunner-addons:/usr/java/packages/lib/i386:/lib:/usr/lib
#install libsvn-java sudo apt-get install libsvn-java
#add following linies to eclipse.iniTo switch you working copy from trunk to branch I recommend do following
#1 copy you working copy, because switching can be painfull cp -r trunk branch #2 run svn switch svn switch https://svn.jboss.org/repos/jbosstools/branch branch
svn switch --relocate https://old-url http://new-url 3.2.helios/
To generate svn repository statistic information you can use statsvn
svn co svn://server/repo/trunk
svn log -v --xml > logfile.log
To get file processed correctly after svn checkout or when we view file in repository using browser we should set svn properties to this file.
For viewing files in svn using browser mime type is very important
# possible variant image/png text/css svn propset svn:mime-type text/html test.html
svn propset svn:executable ON somescriptsvn proplist vpe-news-3.1.0.CR2.html --verbose
svn stat <folder_name> ? test
svn propset svn:ignore target <folder_name> svn ci <folder_name> -m"Folder has been marked for ignoring"
svn stat <folder_name> #nothing should be printed
Recursively Remove .svn Directories in Linux
rm -rf `find . -type d -name .svn`
svn export project copyOfProject