]> git.rm.cloudns.org Git - xonotic/xonotic.wiki.git/commitdiff
(Commit created by redmine exporter script from page "Repository_Access" version 1)
authordivVerent <divVerent@xonotic.org>
Thu, 18 Mar 2010 08:25:00 +0000 (08:25 +0000)
committerRedmineExport <redmineexport@dev.xonotic.org>
Mon, 17 Nov 2014 17:53:33 +0000 (17:53 +0000)
Repository_Access.textile [new file with mode: 0644]

diff --git a/Repository_Access.textile b/Repository_Access.textile
new file mode 100644 (file)
index 0000000..1db3d01
--- /dev/null
@@ -0,0 +1,32 @@
+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>