Collaboration This skill documents how to collaborate on projects on GitHub. Working on Projects With write access If you have write access to the project, you may work directly in the project. With read-only access If you only have read-only access and cannot write directly to any branches: 1. Create a fork under your own GitHub user account 2. Work exclusively on the fork, not the original repository 3. The fork is your workspace for all development Making Changes To submit changes to a project: 1. Create a new branch (never commit directly to main) 2. Make commits on this branch as work pr…