sequenceDiagram participant A as Author participant R as Reviewer A->>A: Write some code in your branch or fork A->>R: Open a pull request R->>R: Add comments to a review R->>A: Submit a review loop Until approved A->>R: Address or respond to review comments R->>A: Clarify or resolve comments end R->>A: Approve pull request A->>A: Merge pull request A->>A: Delete branch
Collaboration
Effective collaboration is a fundamental aspect of any successful software development project.
Key points:
- Identifying your collaboration needs: Understand the specific requirements of your project that necessitate collaboration.
- Setting up a contribution workflow: Establish clear guidelines for how contributors can participate in your project.
- Documenting the workflow!: Ensure that your collaborative workflow is well-documented.
Collaborative workflow
Following the GitHub Flow model, everything starts from the main
branch. Developers can create feature branches from the main branch to isolate their work. Once ready, changes are merged back to main
.
A common workflow in a collaborative development project.
- Create a feature branch: Start by creating a new branch of the
main
branch (ordevelop
if used). This branch should have a descriptive name to give an idea of the work that will be done, such as a new feature or a bug fix. This separation allows you to work independently without affecting the main codebase. - Make changes and commit: Work on your branch, making the necessary changes to the code. Commit these changes with clear, descriptive messages.
- Open a pull request: Once you have made your changes, open a pull request (PR). PRs allow for discussion, review, and additional changes if necessary.
- Review: Before merging, your changes might go through a review process where other team members can give feedback. Some projects may require a review before merging is allowed.
- Merge: Finally, once your changes are reviewed and tested, you can merge the pull request into
main
(ordevelop
, if applicable). This incorporates your contributions into the project, making them part of the official codebase. - Delete feature branch: Feature branches should be short-lived, thus avoiding potential conflicts due to the divergence of the code.
Forking
External collaborators who do not have the same administrative rights to the repository can fork the project. They make their changes on their forked repository in a new feature branch. Steps 3-5 remain the same.
Conflict resolution
Conflicts occur when two or more changes compete with each other, typically during a merge or rebase operation in Git. With pull requests, code reviews and testing you can catch potential conflicts before they are merged into the main codebase.
Conflicts usually come up and are resolved during a pull request:
- Review Conflicts: When a conflict is detected in a pull request, GitHub will alert you. Start by reviewing the conflicting files to understand the nature of the conflict.
- Pull and Merge Locally: Fetch the latest changes from the
main
branch and attempt to merge them into yourfeature/develop
branch locally. This will allow you to resolve conflicts on your local machine. - Resolve Conflicts: This might involve choosing one change over another or merging the changes manually.
- Test Changes: After resolving conflicts, thoroughly test your changes to ensure that the merged code works as expected.
- Commit and Push: Once conflicts are resolved and changes are tested, commit the resolved conflicts and push your changes back to the
feature/develop
branch on GitHub. - Complete the Pull Request: After resolving conflicts and pushing your changes, review the pull request again to ensure everything is in order. If all checks pass and your team approves the changes, you can complete the merge into the
main
branch.
Effective conflict resolution ensures that changes can be integrated smoothly and that the project remains on track. Conflicts cannot always be avoided, but they can be managed. Clear communication and adherence to established practices is the way to go.