You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 16 Next »

We are always excited to have contributions from the community, especially from new contributors! There are many different ways that you can make contributions to the Daffodil project, including wiki updates, mailing list support, testing, and new code.

This following steps documents the workflow to get you started with contributing code to Apache Daffodil.

  1. If you have not done so already, we reccomend you:

    1. Sign up for an account in JIRA

    2. Subscribe to the dev@daffodil.apache.org mailing list by sending an email to dev-subscribe@daffodil.apache.org and following the instructions.

    3. Send an email to the dev@daffodil.apache.org mailing list requesting Jira contributor access. For example:

      I would like to contribute to the Daffodil project! Please grant me Jira contributor access.
      
      My Jira user name is: ...

      Once granted, you will be able to assign bugs to yourself and create new bugs.

  2. Search for an existing issue or create a new issue in JIRA that represents the change you would like to make or bug to fix.

    If you are a beginner to Daffodil development, a good place to start is with the Daffodil beginner bugs.

    See the Daffodil Issue Tracker information for creating issues and what information/discussions should take place in JIRA.
     

  3. Assign the issue to yourself so others know that you are working on it.

  4. Visit the Apache Daffodil GitHub and create a fork by clicking on "Fork" in the top right.
     

  5. Clone your new fork. This will be your origin remote:

    $ git clone https://github.com/<github_username>/incubator-daffodil.git
    $ cd incubator-daffodil
  6. Add the ASF upstream repository as a new git remote, calling it asf:

    $ git remote add asf https://github.com/apache/incubator-daffodil.git
    $ git fetch asf
  7. Create a new branch off of the asf/master branch named daffodil-XYZ-description, where XYZ is the JIRA bug number and -description is an optional, very short description of the bug making it easier to differentiate between multiple development branches. For example:

    $ git checkout -b daffodil-123-bitorder-feature asf/master
  8. Make changes to the branch, frequently adding new commits. For example, the following process should repeat until your code is ready to be reviewed:

    edit files
    $ git add <files that have changed>
    $ git commit

    Code changes should follow the Daffodil Code Style Guidelines and should add appropriate tests using the Test Data Markup Language (TDML) or unit tests.

    Your IDE or operating system environment may add files to the git repository that are specific to your development environment, such as temporary backups and IDE project files. These files should be ignored and not commited by git. However, because they are specific to your environment, the Daffodil .gitignore file does not contain entires for them. You may want to add such entires to one of the following system-specific gitignore files instead:

    • $GIT_DIR/info/exclude 
    • $XDG_CONFIG_HOME/git/ignore 
    • $HOME/.config/git/ignore 

    See the gitignore man page for more information.

  9. When changes are complete, rebase your commits onto the latest asf/master and verify that all tests pass:

    $ git fetch asf
    $ git rebase asf/master
    $ sbt test

    Note that you should not use git pull or git merge to sync to the asf repo. Always fetch/rebase and avoid merge commits. Pull requests containing merge commits will be rejected.


  10. If multiple commits were made in step 7, use git rebase -i asf/master to interactively rebase and squash the commits into the smallest number of logical commits. Most commonly this should be a single commit, but there may be some rare cases where multiple commits make sense.

    Ensure the commit has an appropriate and descriptive commit message. The first line of a commit message should contain a short (~50 characters) description of the changes. The second line should be blank, followed by a longer description of the change, wrapped at 72 characters. This long description should describe what was changed in the commit and, more importantly, why those changes were made. The 'what' can be determined by inspecting the code, but the 'why' is often less obvious. At the end of the commit should be a blank line followed by a reference to the JIRA bug, e.g. DAFFODIL-123. Multiple bugs referenced in a single commit should be separated by a comma on the same line. An example of a commit message is:

    Add support for the dfdl:bitOrder feature
     
    Longer explanation of what changes were made to support the bitOrder
    feature, including a description of why the changes were made. Multiple
    lines are wrapped at 72 characters
     
    DAFFODIL-123
  11. Push your branch to your fork:

    $ git push origin daffodil-123-bitorder-feature
  12. Use the GitHub interface to create a pull request for your new branch.

  13. Wait for review comments. There must be at least two +1's from other committers before the change can be merged. If there are any review comments that require changes or the automated Travis CI build fails, create a new commit on your branch (do not squash your changes yet or use git commit --amend) and push your branch with new commits to GitHub for furthur review. The process should look like:

    edit files
    $ git add <files that changed>
    $ git commit
    $ git push origin daffodil-123-bitorder-feature

    The pull request will automatically update with your new commit. Repeat this step until at least two +1's are recieved from committers.
     

  14. Once at least two +1's are received from committers, a committer can accept the pull request. If you made extra commits in step 12, you should now fetch the latest asf, rebase and squash the changes into a single commit  (fixing potential conflicts), and push to origin using the --force option:

    $ git fetch asf
    $ git rebase -i asf/master
    $ git push --force origin daffodil-123-bitorder-feature
  15. A committer can now merge the pull request using the GitHub GUI. This is to be done by clicking the "Merge pull request" drop down and selecting "Rebase and merge". The "Create merge commit" and "Squash and merge" options should not be used.  For new committers, you may need to link your GitHub and ASF accounts by visiting https://gitbox.apache.org before you can merge.
     

  16. The committer that merged the pull request should now mark the JIRA bug as "Resolved" and add a comment with the git commit hash that includes the fix.

  17. If you would like to clean up, you can now delete your development branch, either via the GitHub user interface or:

    $ git push --delete origin daffodil-123-bitorder-feature
    $ git branch -D daffodil-123-bitorder-feature
  • No labels