Development getting started » History » Version 2
« Previous -
Version 2/18
(diff) -
Next » -
Current version
johu, 03/10/2010 11:05 PM
Getting started¶
- Table of contents
- Getting started
Redmine¶
No source code change without an issue. Quassel project manages bugs and features with the redmine plattform. To get open issue (bug or feature) assigned, you have to setup account here on http://bugs.quassel-irc.org.
Git¶
Install git on your operation system.
git config --global user.name "First name and last name" git config --global user.email registered@email.example.com
Gitorious¶
Setup account¶
ssh key¶
To push changes you will need a SSH key pair. To generate it on linux type the command:
ssh-keygen -t rsa
After following instructions you'll have something like that. On Windows you can check the official faq for a solution.
You should now have a private key like id_dsa and public key id_dsa.pub in your ~/.ssh/. Upload the public key in your gitorious account options. http://gitorious.org/~yournick/keys/new
ssh agent¶
TODO
Workflow¶
TODO