Branch and PR Workflow
While the Fork and PR Workflow is the recommended workflow, you could also work collaboratively by creating PRs through the original repository (i.e. no forks involved).
This may be simpler to setup for smaller projects (like Orbital), but we still highly recommend following the Fork and PR Workflow instead.
This workflow is very straightforward:
Clone the original repository
Create a local branch
Make changes to the local branch
Push the local branch to the original repository
Make a PR from the local branch to the
main
branch
While it is very simple, it is also very error prone as pushing directly to the original repository may result in directly overriding changes in the original repository if you are not careful and you may not even have the permissions to push directly to the original repository (this is the case for most open-source projects).
Last updated