git_workflows

Last updated: 2024-09-17 21:09:16.510359 File source: link on GitLab

This page contains the workflows used in GIT for the NuNet development team. The first section details the workflow from a developer's point of view, the second section details the branching strategy to organize the GIT repositories, and the third section details how version increments work for NuNet projects.

Table of contents

[[TOC]]

Git workflow - developer view

  1. The developer should use the feature branching strategy i.e. each feature/issue is implemented on its own branch.

  2. From the Issue on GitLab, the developer uses the Create branch button. GitLab automatically fills the branch name. The developer chooses the source branch as main (see picture below).

{width=25% height=20%}

  1. A branch tends to be short-lived, making it easier to merge.

  2. A developer should commit/push every day, even when it is not yet ready for review, and write good commit messages. The developer should also merge the main branch every day on the feature branch.

  3. When the developer is done, the developer merges the main branch on the feature branch, opens a merge request (MR) and assigns a peer reviewer based on one of these aspects: familiarity with the requirements, knowledge of the module or code, a useful ability, or relevant experience.

  4. A MR triggers the CI pipeline. The developer makes changes if necessary so the merge request passes through the pipeline successfully.

  5. Reviewers should leave questions, comments, and suggestions. Reviewers should see if the README.md files were updated. Reviewers can comment on the whole pull request or add comments to specific lines. The developer can continue to commit and push changes in response to the reviews. The MR will update automatically, and the CI pipeline will run again.

  6. In addition to peer reviews, some MRs will also undergo an architectural or conceptual review, preferably conducted by @kabir.kbr or @vyzo. This review can be requested by either the MR creator or the peer reviewer.

  7. Each MR needs to approved by one person from the technical board and one person from the security team.

  8. Once the MR is approved, the tech lead or the product owner merges the request to main branch. The options to “Delete source branch” and “Squash commits” should be marked as shown in the following picture.

  9. The CI pipeline runs in the main branch. It is unusual but, if necessary, the developer makes changes to the main branch so it can pass through the pipeline successfully.

{width=50% height = 50%}

Observation: If for some reason the developer creates a branch that will not be merged, the developer needs to remove it after its use.

Git workflow - branching strategy

  1. Feature branches are created from Issues using the GitLab interface. The developer uses the Create branch button. GitLab automatically fills the branch name. The developer chooses the source branch as main (see picture at the above section Git workflow - developer view).

  2. When an issue is complete it is merged into the main branch through an approved merge request (MR).

  3. The release branch tracks the current (latest) release. Code is merged/cherry picked from main and tags are created for every release.

  4. The Release version is reached in a series of steps. a. When code is merged/cherry picked from main to the release branch, it is considered as a release candidate. A tag vX.X-rc1 is created for it. b. A feature freeze is declared on the main branch. c. Testing starts on the release candidate present on the release branch. d. Bug fixes and development continue on the main branch. e. This continues until we are ready for the next release candidate (vX.X-rc2). At this stage, main is merged/cherry picked into the release branch. f. The above steps are repeated until we are confident there all features are incorporated and there are no known bugs left that can block the release. At this point, final release is created with the tag vX.X.

  5. Post release, the feature freeze on the main branch lifted. The development process continues as normal.

  6. For long term development features, it may be required to create a next branch as an alternate to main while the feature freeze is in place due to the release. In this case next is merged to main and it is deleted prior to resumption of development activities.

  7. For bugs discovered in development, patch releases can be created with a tag, for example vX.X.1. Feature branches to bugs and critical issues can be directly created from release branch by the developer.

  8. For release with long term support, it may be needed to keep the patch release in a different branch, ex release/vX.X.1 instead of merging to the release branch.

  9. A label version is composed by major.minor.hotfix:

    • major version with incompatible API changes;

    • minor version with functionality in a backwards compatible manner;

    • hotfix version with backwards compatible bug fixes.

Messages for commits in NuNet projects

Here are some common types used in messages accordingly to Conventional Commits specification:

  • feat: A new feature for the user or a significant enhancement

  • fix: A bug fix

  • refactor: Code changes that neither fix a bug nor add a feature

  • perf: Performance improvements

  • test: Adding or modifying tests

  • style: Code style changes (e.g., formatting)

  • docs: Documentation changes

  • revert: Reverting a previous commit

  • build: Changes that affect the build system or external dependencies (e.g. npm, docker, nexus)

  • chore: Routine tasks, maintenance, or general refactoring

  • ci: Changes to the project's Continuous Integration (CI) configuration

  • release: Version number changes, typically associated with creating a new release

If the changes in the MR require updates or may break existing functionality, instead of using a type from the above list, it is necessary to use: BREAKING CHANGE: <MR title>

Messages added to the MR are included to the CHANGELOG file and appended to the release before publishing on GitLab.

The table below illustrates the mapping of MR types to version upgrade and release types.

Commit MessageVersion UpgradeRelease Type

fix
 refactor perf test style docs

Patch

Fix Release

feat

Minor

Feature Release

BREAKING CHANGE

Example:

perf(pencil): remove graphiteWidth option

BREAKING CHANGE: The graphiteWidth option has been removed. The default graphite width of 10mm is always used for performance reasons.

Major

Breaking Release

NOTE: The BREAKING CHANGE: token must be included at the end of the commit message.

build
 chore ci


None

No new release created

Last updated