Difference between revisions of "Portal:Contribute"

From MNE-CPP Wiki
Jump to: navigation, search
Line 1: Line 1:
 
This portal features information on how the code contribution process works in the MNE-CPP project.
 
This portal features information on how the code contribution process works in the MNE-CPP project.
 +
== The MNE-CPP Contribution Cycle ==
  
== Project Management ==
+
=== How to contribute your code ===
 
+
The MNE-CPP project is maintained by an agile management approach, using JIRA. JIRA is a well known issue tracking tool by Atlassian, which let's you post bug reports, improvement tasks, wishes for new features and much more. It gives you a way to directly participate in the development of MNE-CPP. Please go to [https://mne-cpp.atlassian.net MNE-CPP's JIRA website] and sign up for an account if you wish to help to improve MNE-CPP.
+
 
+
Next to JIRA we also use Atlassian's Confluence to share documents, meeting notes and other project related files. You can find our confluence page [https://mne-cpp.atlassian.net/wiki/ here].
+
 
+
== How to contribute your code ==
+
 
+
 
This guide will show you how to contribute your own code to the MNE-CPP project:
 
This guide will show you how to contribute your own code to the MNE-CPP project:
  
 
# If you have not already done so, fork the repository to your own Git Hub repository.
 
# If you have not already done so, fork the repository to your own Git Hub repository.
# Clone your remote (Git Hub) repository to your local system.
+
# Clone your remote (forked Git Hub) repository to your local system.
 
# Make your changes to the code (please follow the [[Coding Conventions & Style|coding conventions]]) and do a commit (please follow the [[Commit Policy|commit policy]]).
 
# Make your changes to the code (please follow the [[Coding Conventions & Style|coding conventions]]) and do a commit (please follow the [[Commit Policy|commit policy]]).
 
# Push your changes to your remote (Git Hub) repository.
 
# Push your changes to your remote (Git Hub) repository.
# Go to your remote repository via the GitHub website and create a pull request.
+
# Go to your remote (forked Git Hub) repository via the GitHub website and create a pull request:
 +
## Right next to the branch selection tool, look for the ''New pull request'' button.
 +
## The Compare Changes page will appear.
 +
## Select the appropriate ''base'' and ''compare'' branch  (by default the ''base'' branch should be the branch of the repository you forked from). The ''base'' branch is the branch of the repository you want to merge your changes to (MNE-CPP main repository). The ''compare'' branch is the branch where you implemented the new feature, bugfix, etc.
 +
## Name the pull reqest, describe your changes and hit ''Create pull request''.
 
# After you created the pull request, wait for the peer review to be finished:
 
# After you created the pull request, wait for the peer review to be finished:
## Two full developers will review your code.
+
## Two MNE-CPP developers will review your code.
## Please change your code on your local machines based on the comments made by the reviewers.
+
## Please change your code on your local machine based on the comments made by the reviewers. Note: There is no need to create a new pull request for every new change you make to your code. Just commit the changes and push your code to your repository. The changes will automatically be added to your already created pull request.
## There is no need to create a new pull request for every new change you make to your code. Just commit the changes and push your code to your repository. The changes will automatically be added to your already create pull request.
+
 
## As soon as your code suits the mne-cpp coding guidelines and all tests were successfull, the code will be merged into the main mne-cpp repository.
 
## As soon as your code suits the mne-cpp coding guidelines and all tests were successfull, the code will be merged into the main mne-cpp repository.
# Congratulations! Your now an official contributor to the MNE-CPP project. Keep up the good work!
+
# Congratulations! You are now an official contributor to the MNE-CPP project. Keep up the good work!

Revision as of 13:59, 6 January 2016

This portal features information on how the code contribution process works in the MNE-CPP project.

The MNE-CPP Contribution Cycle

How to contribute your code

This guide will show you how to contribute your own code to the MNE-CPP project:

  1. If you have not already done so, fork the repository to your own Git Hub repository.
  2. Clone your remote (forked Git Hub) repository to your local system.
  3. Make your changes to the code (please follow the coding conventions) and do a commit (please follow the commit policy).
  4. Push your changes to your remote (Git Hub) repository.
  5. Go to your remote (forked Git Hub) repository via the GitHub website and create a pull request:
    1. Right next to the branch selection tool, look for the New pull request button.
    2. The Compare Changes page will appear.
    3. Select the appropriate base and compare branch (by default the base branch should be the branch of the repository you forked from). The base branch is the branch of the repository you want to merge your changes to (MNE-CPP main repository). The compare branch is the branch where you implemented the new feature, bugfix, etc.
    4. Name the pull reqest, describe your changes and hit Create pull request.
  6. After you created the pull request, wait for the peer review to be finished:
    1. Two MNE-CPP developers will review your code.
    2. Please change your code on your local machine based on the comments made by the reviewers. Note: There is no need to create a new pull request for every new change you make to your code. Just commit the changes and push your code to your repository. The changes will automatically be added to your already created pull request.
    3. As soon as your code suits the mne-cpp coding guidelines and all tests were successfull, the code will be merged into the main mne-cpp repository.
  7. Congratulations! You are now an official contributor to the MNE-CPP project. Keep up the good work!