Version 1/2 - Next » - Current version
Walid Nouh, 09/18/2010 02:30 pm


Contribute To The Code

Write enabled repositories

The repositories on github are read-only mirrors of the actual main repository which is opened to contributors only. The normal workflow is:
  1. Create an account on Github
  2. Configure your Git installation to use the correct Name / Email http://help.github.com/git-email-settings/THIS IS IMPORTANT, you can't change this information once the commit is merged mainstream!
  3. Fork the repository you want on the Github interface (The Fork Button!)
  4. Clone this forked repository and commit your changes
  5. Request a review/merge on IRC or Mailing list
  6. Enjoy!

Only http://forge.fusioninventory.org/projects/fusioninventory/wiki/Contribute repository maintainers have write access on the master repository. They have an account on the server and use it to write on their repositories, as for example:

git+ssh://user@forge.fusioninventory.org/git/fusioninventory/agent.git

Keywords in commits :

Use keywords in your commits to interact with issues :

  • Make a reference to an issue : use the keyword refs or references, followed by the number of the issue.
    Example:
    refs #123
    referencess #123
    
  • Mark an issue as resolved : use the keyword fixes or closes, followed by the number of the issue.
    Example:
    fixes #123
    closes #123