“How do I contribute code to this project?”
First off, take a moment to review our Best Practices before writing or submitting any code.
No direct changes should be pushed to the build-artifact repository. The process of syncing these repositories is managed transparently in the background.
There are a few recommended Git workflows to consider, with the size of the team being a large influencing factor as to which workflow you might go with.
The Feature Branch Workflow encourages all feature development work to take place on a dedicated branch, instead of committing locally to the standard master
branch. The specifics are as follows:
- A developer creates a new branch based on an up-to-date
master
branch to start work on a new feature. - When the work is completed, the "feature branch" is pushed to
origin
(or whatever name the developer gave the remote of their forked repository). - A pull request is opened against the
master
branch, giving other team members the chance to review the work completed prior to merging intomaster
. - Once the work is accepted, it is merged into the
master
branch.
The above flow is best-suited for a small team. For a larger team, however, the Gitflow Workflow should be considered.
The Gitflow Workflow builds on the concept of the feature branch workflow. In addition to developers committing to feature branches instead of directly to master
, they will additionally submit pull requests against a develop
branch, that serves as an integration branch for new features. The specifics are as follows:
- A developer creates a new branch based on an up-to-date
develop
branch to start work on a new feature. - When the work is completed, the "feature branch" is pushed to
origin
. - A pull request is opened against the
develop
branch, giving other team members the chance to review the work completed prior to merging intodevelop
. - Once the desired set of features has been merged into the
develop
branch (or as the Atlassian docs mention, a predetermined release date has approached) a newrelease
branch is created off ofdevelop
. - From then on, the
release
branch can be worked on by one team or the release master to add only what is necessary for the release, while the rest of the team is able to continue feature development against thedevelop
branch. - The
release
branch is eventually merged intomaster
, anddevelop
rebased ontomaster
upon merging.
This flow allows a larger team to work off an integrated branch (develop
), all while maintaining a stable master
branch that remains in a good state.
The Gitflow Workflow builds on the concept of the feature branch workflow. In addition to developers committing to feature branches instead of directly to master
, they will additionally submit pull requests against a develop
branch, that serves as an integration branch for new features. The specifics are as follows:
- A developer creates a new branch based on an up-to-date
develop
branch to start work on a new feature. - When the work is completed, the "feature branch" is pushed to
origin
. - A pull request is opened against the
develop
branch, giving other team members the chance to review the work completed prior to merging intodevelop
. - Once the desired set of features has been merged into the
develop
branch and the branch is known to be in a good state, it is merged into themaster
branch.
This flow still allow a team to work off an integrated branch (develop
), all while maintaining a stable master
branch, but removes the release
branch portion of the flow.
Note: In all flows above, hotfixes are merged directly into a hotfix
branch, which can then be merged to master
.
- Pull a ticket in JIRA
- Create a new local feature branch named according to the following pattern:
abc-123-short-desc
Where "ABC" is the Jira prefix of your Jira project and "123" is the ticket number for which the work is being performed. - Make your code changes.
- Commit your changes. Each commit should be logically atomic, and your commit messages should follow the pattern: "ABC-123 A grammatically correct sentence ending within punctuation."
The steps below assume use of a Gitflow Workflow.
For any work, pull requests must be created for individual tasks and submitted for review. Before submitting a pull request, be sure to sync the local branch with the upstream primary branch -
git checkout develop
git pull upstream develop
git push origin develop
git checkout -b XXX-<new-issue-branch> develop
If you created many small commits locally while working through a ticket, you should clean the history so that it can be easily reviewed. You can combine these commits using git rebase
.
git rebase -i upstream/master
Pull requests should never contain merge commits from upstream changes.
Push your feature branch to your fork of the upstream repository, and submit a Pull Request from your-fork/feature-branch to canonical-repo/develop. You may optionally use Hub to submit your pull request from the command line.
hub pull-request
In order to enforce consistency on a project, a pull request template can also be configured using hub
-
git config --global --add hub.pull-request-template-path ~/.pr-template
Merge conflicts result when multiple developers submit PRs modifying the same code and Git cannot automatically resolve the conflict. For instance, if two developers add update hooks to the same module at the same time, these will necessarily conflict, because update hooks must be numbered in a defined sequence.
Developers are responsible for fixing merge conflicts on their own PRs. Follow this process to resolve a merge conflict:
- Fetch upstream history:
git fetch upstream
- Check out the branch against which you opened your PR (e.g. master):
git checkout master
- Make sure it matches upstream:
git reset --hard upstream/master
- Check out your feature branch:
git checkout feature/foo
- Merge master (this is where the magic happens):
git merge master
- At this point, Git will complain about a merge conflict. Run
git status
to find the conflicting file(s). - Edit the files to fix the conflict. The resources at the end of this section provide more information on this process.
- Use
git add
to add all of the files you fixed. - Finally, run
git commit
to finish the merge, andgit push origin feature/foo
to update the PR.
Additional resources:
- https://confluence.atlassian.com/bitbucket/resolve-merge-conflicts-704414003.html
- https://githowto.com/resolving_conflicts
Two versions of the integration workflow are recommended -
- Integration manager
- Peer review
In either workflow, no one should ever commit their own code to the primary working branch.
This model requires one (or more) lead developers to take the responsibility of merging all pull requests. This ensures consistency in quality control as well as identifying any potential issues with related, open pull requests.
A small group of one or more person(s) is selected to be integrators. All commits are reviewed by this group. If work is done by an integrator, their work should be reviewed by a fellow integrator (as if they were a developer).
This model removes the bottleneck of designated integrators, but still eliminates commits directly to the working branch. In short, every commit is reviewed by a developer other than the one submitting the original commit.
After a Pull Request has been submitted or merged, our continuous integration solution will automatically build a site artifact, install an ephemeral instance of Drupal, and execute tests against it. For more information on the build process, please see the Continuous Integration documentation.
Once work has been merged on GitHub and tested via the CI solution, a separate production-ready built artifact will be built and deployed to Acquia Cloud. This can be done either manually or automatically.
Please see deploy.md for more information.
A designated Release Master will perform the release to production. This is typically the project’s Technical Architect. See the Release Process document for detailed information.