<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.fightorder.net/wiki/index.php?action=history&amp;feed=atom&amp;title=Template%3AObtaining_The_Source_Code</id>
	<title>Template:Obtaining The Source Code - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.fightorder.net/wiki/index.php?action=history&amp;feed=atom&amp;title=Template%3AObtaining_The_Source_Code"/>
	<link rel="alternate" type="text/html" href="https://www.fightorder.net/wiki/index.php?title=Template:Obtaining_The_Source_Code&amp;action=history"/>
	<updated>2026-04-21T05:21:31Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://www.fightorder.net/wiki/index.php?title=Template:Obtaining_The_Source_Code&amp;diff=2585&amp;oldid=prev</id>
		<title>Qrow: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://www.fightorder.net/wiki/index.php?title=Template:Obtaining_The_Source_Code&amp;diff=2585&amp;oldid=prev"/>
		<updated>2026-03-04T02:03:09Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 19:03, 3 March 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Qrow</name></author>
	</entry>
	<entry>
		<id>https://www.fightorder.net/wiki/index.php?title=Template:Obtaining_The_Source_Code&amp;diff=2584&amp;oldid=prev</id>
		<title>compilinter&gt;Ivand: /* Latest Stable (master branch) */</title>
		<link rel="alternate" type="text/html" href="https://www.fightorder.net/wiki/index.php?title=Template:Obtaining_The_Source_Code&amp;diff=2584&amp;oldid=prev"/>
		<updated>2020-05-06T16:24:49Z</updated>

		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Latest Stable (master branch)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=== Tarballs ===&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;(For playing online official games on lobby.springrts.com - the spring lobby server)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
{{Tarballs}}&lt;br /&gt;
&lt;br /&gt;
=== Git ===&lt;br /&gt;
[https://github.com/spring/spring Spring project page at github]&lt;br /&gt;
&lt;br /&gt;
Master repo URI: &amp;lt;code&amp;gt;{{GitCloneUrl}}&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Backup repo: &amp;lt;code&amp;gt;git://git.code.sf.net/p/springrts/code&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Branches of interest:&lt;br /&gt;
* master - latest stable, enforced for official games on lobby.springrts.com&lt;br /&gt;
* maintenance - fixes for the latest stable&lt;br /&gt;
* develop - major developments (most active, larger developments)&lt;br /&gt;
&lt;br /&gt;
Assuming the GIT command line client is installed, you can clone (get locally) the repository with the commands below.&lt;br /&gt;
&lt;br /&gt;
====Latest Stable (master branch, useless for development purposes, lives as maintenance moving forward)====&lt;br /&gt;
&amp;lt;pre&amp;gt;git clone --recursive git://github.com/spring/spring.git -b master&amp;lt;/pre&amp;gt;&lt;br /&gt;
To later update it (get the changes other people did) with:&lt;br /&gt;
&amp;lt;pre&amp;gt;git pull --rebase&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Maintenance (maintenance branch)====&lt;br /&gt;
&amp;lt;pre&amp;gt;git clone --recursive git://github.com/spring/spring.git -b maintenance&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Bleeding-edge (develop branch)====&lt;br /&gt;
&amp;lt;pre&amp;gt;git clone --recursive git://github.com/spring/spring.git -b develop&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Working with git====&lt;br /&gt;
Please note that patches to the code must be done for either develop or maintenance. Such patches can be then sent to one of the developers with repository access. If you are new to git and github, you may want to have a look at [http://help.github.com/ this guide] to get you started.&lt;br /&gt;
&lt;br /&gt;
Note: you can switch &amp;lt;code&amp;gt;branches&amp;lt;/code&amp;gt; this way:{{code|&lt;br /&gt;
# (optional) backup your current code changes&lt;br /&gt;
git stash&lt;br /&gt;
&lt;br /&gt;
# switch branch&lt;br /&gt;
git checkout $MY_OTHER_BRANCH&lt;br /&gt;
&lt;br /&gt;
# sometimes needed&lt;br /&gt;
# note, it deletes all your unstashed changes and all non-pushed commits on the new branch,&lt;br /&gt;
# but it doesn&amp;#039;t delete untracked files.&lt;br /&gt;
#git reset --hard &lt;br /&gt;
&lt;br /&gt;
# update/sync with remote repo&lt;br /&gt;
git pull --rebase&lt;br /&gt;
&lt;br /&gt;
# (optional) if you want to apply the code changes backed-up in the first step&lt;br /&gt;
#git stash pop # reapplies your changes and DELETES the backup&lt;br /&gt;
# or&lt;br /&gt;
#git stash apply --index 0  # reapplies your changes and keep the backup (see `git stash list`)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
====Submodules====&lt;br /&gt;
To obtain the submodules you should clone the repository with --recursive as mentioned above.&lt;br /&gt;
If you haven&amp;#039;t done this, you can execute the following code&lt;br /&gt;
{{code|&lt;br /&gt;
git submodule sync&lt;br /&gt;
git submodule update --init&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
To update the submodules, you have to execute the same commands again or pull normally.&lt;/div&gt;</summary>
		<author><name>compilinter&gt;Ivand</name></author>
	</entry>
</feed>