Differences between revisions 5 and 6
Revision 5 as of 2008-09-22 10:17:45
Size: 2348
Editor: jaromil
Comment:
Revision 6 as of 2008-09-22 10:18:41
Size: 2366
Editor: jaromil
Comment:
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
'You need to read these instructions only if you have a development account, anonymous read-only access is granted at the url git://code.dyne.org' ''You need to read these instructions only if you have a development account, anonymous read-only access is granted at the url git://code.dyne.org''
Line 17: Line 17:
Next step is to check out the code over a secure connection, which in our case listens on port 2222, therefore add this entry into your .ssh/config (create the file if needed) Next step is to check out the code over a secure connection, which in our case listens on port '''2222''', therefore add this entry into your '''.ssh/config''' (create the file if needed)
Line 34: Line 34:
''Remember that all your commits will be publicly exposed online'', forever archived and associated with the username you are using,
therefore think twice and check your ''.gitconfig'' file:
'''Remember that all your commits will be publicly exposed online''', forever archived and associated with the username you are using,
therefore think twice and check your '''.gitconfig''' file:

Welcome to the dyne.org developers wiki lounge

Software for the freedom of speech and creation, audio/video streaming architectures by the dyne.org hackers.

In these pages you'll find technical documentation on dyne.org software and code components used in them.

All code is licensed under the GNU GPL License.

Repositories are on http://git.dyne.org

How to use our GIT setup

You need to read these instructions only if you have a development account, anonymous read-only access is granted at the url git://code.dyne.org

In case you have a developer account then you already exchanged your ssh public key

Next step is to check out the code over a secure connection, which in our case listens on port 2222, therefore add this entry into your .ssh/config (create the file if needed)

Host code.dyne.org
        Compression yes
        Port    2222
        User    git

Then proceed cloning the repository

git clone git@code.dyne.org:projectname.git

note that the above git url differs in syntax from the anonymous url, especially with the use of colon before projectname.git

Remember that all your commits will be publicly exposed online, forever archived and associated with the username you are using, therefore think twice and check your .gitconfig file:

[user]
        name = Public name or nick
        email = never@published.by.us

You might also want to experience some special effects, then let us suggest these entries in .gitconfig

[color]
        branch = auto
        diff = auto
        interactive = auto
        status = auto

Happy hacking!

Developers lounge

This is a portal to various source code repositories, it gathers links and documentation about code components that are of no interest for the end user, only for the hacker.

This portal will not host the ultimate documentation of code components: it is a place for coders to exchange knowledge and experience about various reusable parts of their code.

If you are a coder and have something to document here, you are welcome to contact us

As an overview, these are other code repositories linked by this portal:

Code (last edited 2012-05-06 09:08:29 by jaromil)