Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Search for an issue in JIRA that represents the change you would like to make or bug to fix. If one does not exist, create a issue. See How To Report a Bug for the Daffodil Issue Tracker information for creating issues and what information/discussions should take place in JIRA.

     

  2. Assign the issue to your self. You may need to request permissions to modify the bug by sending an email to dev@daffodil.apache.org

  3. Create a GitHub fork of the Daffodil GitHub mirror and clone it. This remote will be your origin remote:

    Code Block
    languagebash
    $ git clone git@githubhttps://github.com:username/<username>/incubator-daffodil.git
    $ cd daffodil
  4. Add the ASF upstream repository as a new git remote, calling it asf:

    Code Block
    languagebash
    $ git remote add asf githttps://gitgithub.com/apache.org/incubator-daffodil.git
    $ git fetch asf
  5. 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:

    Code Block
    languagebash
    $ git checkout -b daffodil-123-bitorder-feature asf/master
  6. Make changes to the branch, frequently adding new commits. Code changes should follow the Daffodil Code Style Guidelines and should add appropriate tests using the Test Data Markup Language (TDML) or unit tests. Tests in src/test/scala-debug that are fixed should be moved into src/test/scala.

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

    Code Block
    languagebash
    $ 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.

     

  8. If multiple commits were made, git rebase -i asf/master should be used 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 each commit has an appropriate and descriptive commit message. The first line of a commit message should contain a short (~50 characters) description of the commit. 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:

    Code Block
    languagetext
    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
  9. Push your branch to your fork:

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

  11. Mark the JIRA bug as Patch Available.

  12. 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 new a new commit on your branch (do not squash your changes yet or use git commit --amend) and push your branch to GitHub for furthur review. The pull request will automatically update with your new commit. Continue this process until at least two +1's are recieved from comitters.

  13. 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 now squash them using git rebase -i and push to origin using the --force option:

    Code Block
    $ git rebase -i asf/master
    $ git push --force origin daffodil-123-bitorder-feature
  14. A committer can now merge the pull request using the GitHub gui. This is to be done clicking the "Merge pull request" dropdown and selecting "Rebase and merge". The "Create merge commit" and "Squash and merge" options should not be used.

  15. Mark the JIRA bug as Resolved.

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

    Code Block
    languagebash
    $ git push --delete origin daffodil-123-bitorder-feature
    $ git branch -D daffodil-123-bitorder-feature