Guidelines: contributor - psjw12/gitextensions GitHub Wiki
Contributing to the Project
Contributions to the project are handled separately for new features and bug fixes.
New Features
- If an issue does not already exist for the feature, add one to the issue tracker. This allows the feature to be discussed, and eventually assigned to a particular release milestone.
- Create a new lightweight branch in your fork of the project, which is based on the master development branch.
- When you are ready to submit a pull request, submit the pull request using master as the base for the pull request. Provide screenshot for UI changes.
Bug Fixes
- If an issue does not already exist for the bug, add one to the issue tracker.
- Choose a base branch for developing a fix for the bug.
- Use master branch if bugfix contains a lot of changes.
- Check the GitExtensions.releases document for the newest supported version of the software.
- Locate the newest release branch (highest version number) which exhibits the bug, but with the version listed in the GitExtensions.releases file. This is the base branch for your work. If no supported release branch exhibits the bug, the correction should be made to the master branch.
- Like new features, you'll want to create a new lightweight branch in your fork of the project for bug fixes. We recommend naming the branch
fix-number
, wherenumber
is the issue number where the bug is reported. For example, a branchfix-1960
could be used for fixing issue #1960.
Documentation
Update the documentation, or raise an Issue to indicate that documentation updates are required (see Updating the Documentation for further details).