Skip to content

Development Workflow

Warning

This documentation is currently under construction and may not be up to date.

Create a Jira Issue

Each change should be described in a Jira issue. Before submitting an issue, make sure that the issue explains the purpose of the changes and what changes should be done. New issues should be created in the backlog and marked as . The team will look each week at the new created issues. A issue will be put into a sprint if everyone of the team understand what to do for the issue and all information are provided to proceed the issue. Before creating a new issue, look through the backlog and current sprint if issue is not already reported.

Start Working on an Issue

  • Assign the issue to you
  • Put the issue into In progress
  • Create a new branch for the issue
  • Put the branch name on the Jira issue

Create a New Branch

Create a issue branch

The branch name should be start with the issue number and has a brief description of the task. Use underscores in the branch name to separate words.

git checkout -b <issue_number>_<brief_description>

The commit message should be:

<issue_number>: Create a new branch for <brief_description>

Don’t wrap the line of the commit message and don’t use more than 72 characters. If you need a longer commit message. Leave one empty line after the first line and then give a more detailed description (now you can wrap this description). After creating the branch, your working copy is already on this branch. You do not need to run an extra switch command like when using SVN.

Create a release branch

The branch name should start with release and should have the release number in it. For example, you like to create a release branch for all work for a release 2.2.x , the release_2.2.x .

git checkout -b release_<release_number>

The commit message should contain the release number in it for example:

Create branch for release Don’t wrap the line of the commit message and don’t use more than 72 characters. If you need a longer commit message. Leave one empty line after the first line and then give a more detailed description (now you can wrap this description).

After creating the branch, your working copy is already on this branch. You do not need to run an extra switch command like when using SVN.

Create a branch from a release branch Switch to the release branch, you want to branch from

Then, create a new branch like described at Create-a-issue-branch

Update Jira issue

Add the branch name to your Jira issue

Make Changes

Even if you are working on a Jira issue, keep an eye on the issue to notice any new comments on the issues.

Code

  • Modify the code on the “issue“ branch

  • Regularly, commit your changes locally and remotely using:

The commit messages should always start with the issue number and have a short description what changed.

Be aware, that the requirements for commit message are:

Not more than 72 characters per line

The first line should start with the issue number and have a really short brief description

If more descriptions are necessary, leave an empty line and then write more text, e.g.

CDDSO-109 Merge fixing duplicate coordinates error from cmor * Add functional tests for ARISE model * Simplify mean cube calculation After the first commit:

Do your additional changes and then use:

git commit --amend That combine latest and the current commit to one commit. Using this one allows use to have only one commit per issue even if you “actual“ did multiple commits. A push can be done at any time! (You can still do a git commit --amend after a push, because it always use the latest commit command!)

Remote commit:

git push origin

To be more explicit, you can add the branch name you want to commit to:

git push origin <branch_name_to_commit_to>

Tests

Make sure that unit tests covers your code changes, see Unit Tests

If there were changes in CDDS Transfer, also run integration tests with RabbitMQ, see CDDS Transfer Tests With RabbitMQ - Run the unit tests regularly

It is a good approach to ensure that every time you push a commit to the repository that the tests pass successfully.

Documentation

  • Document your code. Try to be short but precise.
  • Briefly describe the work on the Jira issue

Reviews

  1. For coding reviews, we use the pull requests functionality of Github
  2. Go to Github and the pull requests for the cdds-project: https://github.com/MetOffice/cdds/pulls
    1. Click on New pull request (green box on the right)
    2. Choose as base branch the branch you branched from (often: main)
    3. Choose as compare branch your branch
    4. Then, click on Create pull request
    5. Write into the message box what you did and other useful information for the reviewers
    6. Add to your issue the URL link to the pull request for the reviewers
  3. Put your issue into Review
  4. Assign it to the main reviewer
  5. Mention in the team channel that the issue is now ready to review. So, everyone has the change to review your changes.
  6. You need at least an approved of the main review before merging the issue

  7. If you need to do any changes, assign the issue back to you and put it back into In progress.

  8. If the main reviewer is happy with the changes and no comments or issues are needed to addressed anymore, the issue will moved to Approved and re-assigned to you. Now, you can merge your changes

Merge changes

You have two possibilities how to merge a branch - via command line or using Github.

Merge to parent branch

Via Command Line

Go to the parent branch to merge to (normally: main or the release branch)

git checkout <branch_to_merge_to>

Make sure that the branch is up-to-date:

git pull

Merge the issue branch:

git merge <your_branch_to_merge>

As commit message for a merge use:

<issue-number>: Completed work to <short_brief_description_of_task>

You could face merging conflicts that you need to solve before you can end the merge.

Using Github

  1. Go to the Pull Requests view of your branch in Github
  2. If your review is approved, there is a green Merge Branch button at the bottom of the page. Click on it.

    1. If the this button does not appear or is not clickable, check if your review is really approved and if there is no conflicts you need to solved first.
    2. For solving conflicts, Github provides you help with a UI tool
  3. remove branch if working on main

Cherry pick changes on main branch (or any other branches)

If your parent branch is a release branch, you also need to merge the changes into the main branch. Therefore, cherry picking is the best to do. You can do this after merging your changes into the release branch.

Cherry picking into other branches are following the same pattern!

Via Command Line

Find the commit id of the merge commit into the parent branch, you have done in the previous step:

Go to the parent branch

git checkout <parent-branch>

Find your commit ID:

git log

This list all the previous commits in decreasing order. Each merge entry looks like:

commit <commit-id> (<merge-branches>)
Merge: <merge-ids>
Author: <author-details>
Date:   <timestamp>
<commit-message>
Use the <commit-id> of your merge commit.

Remember your ! You will need it for the next steps.

Do the cherry pick:

Go to the branch you want to cherry-pick to:

git checkout <branch-to-cerry-pick-to>

Cherry pick:

git cherry-pick <commit-id> --no-commit

This will add the commit’s changes to your working copy without directly committing them. You need to do a git commit by yourself.

Commit the changes and check if everything is fine:

Check the changes. If they are fine, commit them:

git commit

Use the key-word cherry-pick in your commit message to make clear that this commit is a cherry-pick.

Check if all (unit) tests succeed!

Push the changes

Using Github

For using cherry-picking, see Cherry-picking a commit in GitHub Desktop - GitHub Docs

Close the Jira issue

Move the Jira issue to Done