Versions Compared

Key

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

Note: In the below steps, <version_branch> should be replaced with the version branch of Daffodil you are working on based on the Branch Workflow.

 

...

Implementor creates a new bug branch

Code Block
languagebash
$ git fetch --prune origin
$ git checkout -b review-sdl-123 --track origin/<version_branch>

The branch name must use the following naming convention:

review-xxx-YYY-very_short_desc

PartDescription
xxximplementor initials, in lower case
YYYJIRA bug number, with DFDL prefix removed
desca short description (optional)

Note that the JIRA bug number is mandatory. This means all changes must have an associated JIRA bug.

Also note that the description has been left off in the examples for brevity.
 

...

Implementor performs all development in bug branch, this includes repeating the following steps many times until you are ready for review:

Code Block
languagebash
$ # edit files
$ git add <files>
$ git commit
$ git fetch --prune origin
$ git rebase origin/<version_branch>
$ sbt test
$ git push --force origin review-sdl-123

Notice the frequent commits and pushes. This is a great way to ensure we do not accidentally lose commits. But be careful when using the --force option, as that will replace whatever branch is on the server.

Also, please read A Note About Git Commit Messages for the correct commit message format. Please follow those standards, with the additional requirement that the last line should contain only the JIRA bug number preceded by an empty line, e.g. "\nDFDL-123". If there is more than one bug related to the commit, separate them with commas.

Additionally, tests should be created during this process to convince yourself that your changes are correct. These tests should be placed in the "src/test/scala-new" directory.

If this is a bug fix ticket, any tests that were previously failing should be moved from scala-debug to scala-new.
 

...

When finished developing, implementor ensures changes work with the latest upstream

Code Block
languagebash
$ git fetch --prune origin
$ git rebase origin/<version_branch>
$ sbt test

    

...

Implementor squashes commits into a reasonable patchset.

Code Block
languagebash
$ git rebase -i origin/<version_branch>

Please pay attention to commit message format
 

...

Implementor ensures all tests pass

Code Block
languagebash
$ sbt test

    

...

Implementor pushes to ncsa opensource servers for review

Code Block
languagebash
$ git push --force origin review-sdl-123

    

...

Reviewer reviews patchset. If changes are necessary:

...

Implementor ensures changes work with the latest upstream

Code Block
languagebash
$ git checkout review-sdl-123
$ git fetch --prune origin
$ git rebase origin/<version_branch>

    

...

Implementor squashes review changes into a reasonable patchset

Code Block
languagebash
$ git rebase -i origin/<version_branch>

Please pay attention to commit message format
    

...

Implementor ensures all tests pass

Code Block
languagebash
$ sbt test 

    

Implementor sets <version_branch> branch to bug branch and pushes

Code Block
languagebash
$ git checkout <version_branch>
$ git reset --hard review-sdl-123
$ git push origin <version_branch> # do not use the --force option here 

If commit was a bug fix or a test on <version_branch> and a newer version branch exists:

 

...

Implementor merges the change into the newer version branch, and fixes any conflicts:

Code Block
languagebash
$ git checkout <new_version_branch>
$ git merge <version_branch>

...

Implementor ensures all tests pass

Code Block
languagebash
$ sbt test

If tests fail due to incorrect conflict resolution, changes should be made and amended to the merge commit until tests pass:

Code Block
languagebash
# make changes
$ git add <files>
$ git commit --amend

Implementor pushes changes

Code Block
languagebash
$ git push origin <new_version_branch> # do not use the --force option here

...

Implementor deletes bug branch (both remote and local)

Code Block
languagebash
$ git push --delete origin review-sdl-123
$ git branch -D review-sdl-123 

    

...

this page has moved to https://cwiki.apache.org/confluence/display/DAFFODIL/Code+Contributor+Workflow