This project uses Subversion to manage its source code. Instructions on Subversion use can be found at http://svnbook.red-bean.com/.
Access the source code repository for the AppFuse project in one of the following ways:
- Browse source code online to view this project's directory structure and files: java.net and FishEye
- Check out source code with a Subversion 1.x client. For example:
svn checkout https://appfuse.dev.java.net/svn/appfuse/trunk/ appfuse --username guest
The password for the guest account is "" (nothing).
The best clients for Subversion are TortoiseSVN (Windows only), SmartSVN (Java) and Subclipse (Eclipse). For command line clients, we recommend Cygwin on Windows. For OS X, you should be able to install Fink and run "fink install svn-client".
Access from behind a firewall
For those users who are stuck behind a corporate firewall which is blocking http access to the Subversion repository, you can try to access it via the developer connection:
$ svn checkout https://appfuse.dev.java.net/svn/appfuse/trunk appfuse
Access through a proxy
The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers" configuration file to indicate which proxy to use. The files location depends on your operating system. On Linux or Unix it is located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is a hidden directory.)
There are comments in the file explaining what to do. If you don't have that file, get the latest Subversion client and run any command; this will cause the configuration directory and template files to be created.
Example : Edit the 'servers' file and add something like :
[global] http-proxy-host = your.proxy.name http-proxy-port = 3128
Access via a Git mirror
If you prefer to use Git as your Version Control System, an unofficial mirror of the AppFuse repository is available. It gets updated several times a week, and is imported using the git-svn tool.
In common with other distributed version control systems (DVCS), when you "get" (clone) the git repository, you'll have the entire AppFuse development history available to you.
To clone the Git repository:
git clone git://github.com/myabc/appfuse.git