--- /dev/null
+h1. Repository Access
+
+The repository is accessed using git.
+
+h2. Linux/OS X:
+
+First, you install git using your favorite package manager. Then:
+
+<code>
+git clone git://git.xonotic.org/xonotic/xonotic.git
+cd xonotic
+sh all-update.sh
+</code>
+
+h2. Getting write access
+
+To apply for write access, make an issue of type "Support" in the category "Repository" and attach your public SSH key to it.
+
+To cleanly check out then, you would do:
+
+<code>
+git clone ssh://xonotic@git.xonotic.org/xonotic.git
+cd xonotic
+sh all-update.sh
+</code>
+
+If you already have a checkout, you would do:
+
+<code>
+git config remote.origin.url ssh://xonotic@git.xonotic.org/xonotic.git
+sh all-update.sh
+</code>