Difference between revisions of "Fs2 open on Linux/Acquiring the Code"

From FreeSpace Wiki
Jump to: navigation, search
(Added instructions for stable branch co)
m (Reflect source code hosting via Git)
 
(7 intermediate revisions by 6 users not shown)
Line 3: Line 3:
 
CurrentPage=Acquiring the Code|Acquiring the Code|
 
CurrentPage=Acquiring the Code|Acquiring the Code|
 
PrevPage=[[Fs2_open on Linux/Installing the Development Libraries|Installing the Development Libraries]]|
 
PrevPage=[[Fs2_open on Linux/Installing the Development Libraries|Installing the Development Libraries]]|
NextPage=[[Fs2_open on Linux/Checkout Script|Checkout Script]]}}
+
NextPage=[[Fs2 open on Linux/Pre-Compile Configuration|Pre-Compile Configuration]]}}
 
<p></p>
 
<p></p>
 
{{Note| This step is only for those who want the bleeding-edge source code to compile on their own. You can skip this if you intend to use a provided binary  
 
{{Note| This step is only for those who want the bleeding-edge source code to compile on their own. You can skip this if you intend to use a provided binary  
 
executable.}}
 
executable.}}
Before you begin, make sure you have write permissions on your current working directory. $HOME/$USER is a pretty safe bet. I recommend that you create a permanent /$HOME/$USER/src directory from which you run the CVS command, this way CVS will only update the files changed the next time you download the source and it's always nice to have things organized. Make sure you have CVS installed on your system. See the [[Fs2_open_on_Linux/Installing CVS|Installing CVS]] chapter on installing CVS.
+
Before you begin, make sure you have write permissions on your current working directory. $HOME/$USER is a pretty safe bet. I recommend that you create a permanent /$HOME/$USER/src directory from which you run the git command, this way git will only update the files changed the next time you download the source and it's always nice to have things organized. Make sure you have git installed on your system. See the [[Fs2_open_on_Linux/Installing Git|Installing Git]] chapter on installing Git.
  
 
Now get the source. Run from a terminal:
 
Now get the source. Run from a terminal:
  $ cvs -d:pserver:anonymous:[email protected]:/home/fs2source/cvsroot login
+
 
This tells the CVS tool to first use a password file for authentication (pserver), that you are user "anonymous" with the password "anonymous" who wants to access warpcore.org's CVS repository "/home/fs2source/cvsroot" and login.<br><br>
+
  $ git clone https://github.com/scp-fs2open/fs2open.github.com.git
Next, get the code from the server we just connected to, either from the development branch:
+
 
$ cvs -z3 -d:pserver:[email protected]:/home/fs2source/cvsroot co fs2_open
+
This will pull in the most recent source code from the 'master' branch.
..or from the "stable branch" (currently 3.6.9):
 
$ cvs -z3 -d:pserver:[email protected]:/home/fs2source/cvsroot co -r fs2_open_3_6_9 fs2_open
 
{{Note| For just playing the game it is usually best to get the code from the "stable branch", as it will generally be more.. stable.}}
 
Both of the last two commands tell the CVS server that we want to checkout (co) the CVS module "fs2_open". Either from the default branch (the development branch - HEAD) or from the branch determined by the "-r" option.
 
 
<br>
 
<br>
 +
 +
[[Category:FreeSpace Open on Linux|Acquiring the Code]]

Latest revision as of 04:32, 3 May 2015

« Installing the Development Libraries The fs2_open on Linux Guide
Acquiring the Code
Pre-Compile Configuration »

Note: This step is only for those who want the bleeding-edge source code to compile on their own. You can skip this if you intend to use a provided binary executable.

Before you begin, make sure you have write permissions on your current working directory. $HOME/$USER is a pretty safe bet. I recommend that you create a permanent /$HOME/$USER/src directory from which you run the git command, this way git will only update the files changed the next time you download the source and it's always nice to have things organized. Make sure you have git installed on your system. See the Installing Git chapter on installing Git.

Now get the source. Run from a terminal:

$ git clone https://github.com/scp-fs2open/fs2open.github.com.git

This will pull in the most recent source code from the 'master' branch.