HowToGetLatestStendhal: Difference between revisions

Jump to navigation Jump to search
Content deleted Content added
imported>AntumDeluge
imported>Hendrik Brummermann
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=Precompiled JAR files=
=Precompiled JAR files=
You can download the latest ''stable'' version, {{version}} at the downloads page, http://arianne.sourceforge.net/?arianne_url=games/game_stendhal#downloads You can also use CVS, but that code is actively developed and may be unstable. If you use the CVS version, you must also [[HowToBuildStendhal|compile]] the files, and create the JAR files.
You can download the latest ''stable'' version, {{version}} at the downloads page, http://arianne.sourceforge.net/?arianne_url=games/game_stendhal#downloads You can also use Git, but that code is actively developed and may be unstable. If you use the Git version, you must also [[HowToBuildStendhal|compile]] the files, and create the JAR files.


=Java Webstart=
=Java Webstart=
Line 27: Line 27:
</pre>
</pre>
You will be prompted for your SF password afterward. To commit changes use the <span style="color:red;">git commit</span> command and <span style="color:red;">git push</span> to push changes to the remote master repository. If the local repository is out of sync with remote it will be required to do a synchronization prior.
You will be prompted for your SF password afterward. To commit changes use the <span style="color:red;">git commit</span> command and <span style="color:red;">git push</span> to push changes to the remote master repository. If the local repository is out of sync with remote it will be required to do a synchronization prior.

= About CVS =
CVS (Concurrent Versions System) is a tool used by many software developers to manage changes within their source code tree. CVS provides the means to store not only the current version of a piece of source code, but a record of all changes (and who made those changes) that have occurred to that source code. Use of CVS is particularly common on projects with multiple developers, since CVS ensures changes made by one developer are not accidentally removed when another developer posts their changes to the source tree.

In order to access a CVS repository, you must install a special piece of software called a CVS client. CVS clients are available for most any operating system. Information about CVS client software may be found at http://sourceforge.net/apps/trac/sourceforge/wiki/CVS.

== Anonymous CVS Access (deprecated) ==
This project's SourceForge.net CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. The module you wish to check out must be specified as the modulename. When prompted for a password for anonymous, simply press the Enter key. To determine the names of the modules created by this project, you may examine their CVS repository via the provided web-based CVS repository viewer.

To login into the server:
<pre>
cvs -d:pserver:anonymous@arianne.cvs.sourceforge.net:/cvsroot/arianne login
</pre>

To "checkout" stendhal:
<pre>
cvs -z3 -d:pserver:anonymous@arianne.cvs.sourceforge.net:/cvsroot/arianne co -P stendhal
</pre>

And marauroa:
<pre>
cvs -z3 -d:pserver:anonymous@arianne.cvs.sourceforge.net:/cvsroot/arianne co -P marauroa
</pre>

Updates from within the module's directory do not need the -d parameter.

NOTE: UNIX file and directory names are case sensitive. The path to the project CVSROOT must be specified using lowercase characters (i.e. /cvsroot/arianne)



----
[[Stendhal | Back to stendhal main wiki page]]

[[Category:Stendhal]]