Arianne Source Code Repositories: Difference between revisions

From Arianne
Jump to navigation Jump to search
Content deleted Content added
imported>Hendrik Brummermann
imported>Hendrik Brummermann
No edit summary
 
(65 intermediate revisions by 4 users not shown)
Line 1: Line 1:
The Arianne project currently uses CVS and git to manages the source code.
The Arianne project currently uses Git to manage source code.


== Projects still using CVS ==
== Projects ==

: Server: arianne.cvs.sf.net
: Protocol: pserver for read-only access, extssh for developers
: Repository: /cvsroot/arianne


'''Stendhal'''
'''Stendhal'''
: read-only access: https://codeberg.org/arianne/stendhal.git
: Module: stendhal
: read/write access for developers: ssh://git@codeberg.org/arianne/stendhal.git
'''JMaPacman'''
: Web-based repository viewer: https://codeberg.org/arianne/stendhal
: Module: jmapacman


'''Marauroa'''
: read-only access: https://codeberg.org/arianne/marauroa.git
: read/write access for developers: ssh://git@codeberg.org/arianne/marauroa.git
: Web-based repository viewer: https://codeberg.org/arianne/marauroa


'''Marboard'''
'''Marboard'''
: read-only access: git://git.code.sf.net/p/arianne/marboard
: Module: marboard
: read/write access for developers: ssh://USERNAME@git.code.sf.net/p/arianne/marboard
: Web-based repository viewer: https://sourceforge.net/p/arianne/marboard/ci/master/tree/




== Projects using git ==
== Example .git/config for developers ==


'''Note:''' Do not put project specific settings into your .gitconfig file in your home folder but use the config file in the .git folder of the individual projects for those.
'''Marauroa''' has been migrated to git.
: read-only access: git://arianne.git.sourceforge.net/gitroot/arianne/marauroa.git
: read/write access for develoeprs: ssh://USERNAME@arianne.git.sourceforge.net/gitroot/arianne/marauroa.git


<pre>
Note for developers:
[core]
git config user.name NICKNAME
repositoryformatversion = 0
git config user.email USERNAME@users.sourceforge.net
filemode = true
logallrefupdates = true
autocrlf = false
[branch "master"]
remote = origin
merge = refs/heads/master
[remote "origin"]
url = ssh://git@codeberg.org/arianne/stendhal.git
fetch = +refs/heads/*:refs/remotes/origin/*
[user]
name = REPLACE_WITH_FULL_NAME
email = REPLACE_WITH_EMAIL_ADDRESS
</pre>


[http://wiki.eclipse.org/EGit/User_Guide Eclipse Git User Guide]
Please make sure, that you use the long form of your Sourceforge email address.


[[Category:Marauroa]]
[[Category:Marauroa]]
[[Category:Marboard]]
[[Category:Marboard]]
[[Category:Stendhal]]
[[Category:Stendhal]]
[[Category:JMaPacman]]

Latest revision as of 18:32, 23 December 2025

The Arianne project currently uses Git to manage source code.

Projects

Stendhal

read-only access: https://codeberg.org/arianne/stendhal.git
read/write access for developers: ssh://git@codeberg.org/arianne/stendhal.git
Web-based repository viewer: https://codeberg.org/arianne/stendhal


Marauroa

read-only access: https://codeberg.org/arianne/marauroa.git
read/write access for developers: ssh://git@codeberg.org/arianne/marauroa.git
Web-based repository viewer: https://codeberg.org/arianne/marauroa


Marboard

read-only access: git://git.code.sf.net/p/arianne/marboard
read/write access for developers: ssh://USERNAME@git.code.sf.net/p/arianne/marboard
Web-based repository viewer: https://sourceforge.net/p/arianne/marboard/ci/master/tree/


Example .git/config for developers

Note: Do not put project specific settings into your .gitconfig file in your home folder but use the config file in the .git folder of the individual projects for those.

[core]
        repositoryformatversion = 0
        filemode = true
        logallrefupdates = true
        autocrlf = false
[branch "master"]
         remote = origin
        merge = refs/heads/master
[remote "origin"]
        url = ssh://git@codeberg.org/arianne/stendhal.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[user]
        name = REPLACE_WITH_FULL_NAME
        email = REPLACE_WITH_EMAIL_ADDRESS

Eclipse Git User Guide