Developer Certificate of Origin and License
By contributing to GitLab B.V., you accept and agree to the following terms and conditions for your present and future contributions submitted to GitLab B.V. Except for the license granted herein to GitLab B.V. and recipients of software distributed by GitLab B.V., you reserve all right, title, and interest in and to your Contributions. All contributions are subject to the Developer Certificate of Origin and license set out at docs.gitlab.com/ce/legal/developer_certificate_of_origin.Code of Conduct
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion. Examples of unacceptable behavior include:- Use of sexual language or imagery
- Derogatory comments or personal attacks
- Trolling, public or private harassment
- Insults or other unprofessional conduct
Development Process
Gitaly follows the engineering process as described in the handbook, with the exception that our issue tracker is on the Gitaly project and there’s no distinction between developers and maintainers. Every team member is equally responsible for:- A successful master pipeline
- Fixing security issues
Commit Guidelines
In this project we value good commit hygiene. Clean commits make it much easier to discover when bugs have been introduced, why changes have been made, and what their reasoning was. When you submit a merge request, expect the changes to be reviewed commit-by-commit. To make it easier for the reviewer, please submit your MR with nicely formatted commit messages and changes tied together step-by-step.Write Small, Atomic Commits
Commits should be as small as possible but not smaller than required to make a logically complete change. If you struggle to find a proper summary for your commit message, it’s a good indicator that the changes you make in this commit may not be focused enough. Tips:- Use
git add -pto add only relevant changes - Use
git stashto help you stay focused on additional changes until you’ve implemented them in a separate commit
Split Up Refactors and Behavioral Changes
Introducing changes in behavior very often requires preliminary refactors. You should never squash refactoring and behavioral changes into a single commit, because that makes it very hard to spot the actual change later.Tell a Story
When splitting up commits into small and logical changes, there will be many interdependencies between all commits of your feature branch. If you make changes to simply prepare another change, you should briefly mention the overall goal that this commit is heading towards.Describe Why You Make Changes, Not What You Change
When writing commit messages, you should typically explain why a given change is being made. What has changed is typically visible from the diff itself. A good commit message answers:- What is the current situation?
- Why does that situation need to change?
- How does your change fix that situation?
- Are there relevant resources which help further the understanding?
git commit.
Use Scoped Commit Subjects
Many projects typically prefix their commit subjects with a scope. For example, if you’re implementing a new feature “X” for subsystem “Y”, your commit message would be “Y: Implement new feature X”. This makes it easier to quickly sift through relevant commits.Keep the Commit Subject Short
Because commit subjects are displayed in various command line tools by default, keep the commit subject short. A good rule of thumb is that it shouldn’t exceed 72 characters.Mention the Original Commit That Introduced Bugs
When implementing bugfixes, it’s often useful information to see why and when a bug was introduced. Mention the original commit that introduced a given bug usinggit blame or git bisect.
You can create an alias for this:
Use Interactive Rebases
Use interactive rebases to end up with commit series that are readable and easily reviewable one-by-one. Use interactive rebases to rearrange commits, improve their commit messages, or squash multiple commits into one.Create Fixup Commits
When you create multiple commits as part of feature branches and discover bugs in one of the commits you’ve just written, create a fixup commit:Avoid Merge Commits
During development, other changes might be made to the target branch. These changes might cause a conflict with your changes. Instead of merging the target branch into your topic branch, rebase your branch onto the target branch. Consider setting upgit rerere to avoid resolving the same conflict over and over again.
Ensure All Commits Build and Pass Tests
To keep history bisectable usinggit bisect, ensure that all of your commits build and pass tests:
Changelog
Gitaly keeps a changelog that is generated:- When a new release is created
- From commit messages where a specific trailer is used
Changelog: <option> where <option> is one of:
addedfixedchangeddeprecatedremovedsecurityperformanceother