Collaborative Workflows - Forking, Branching, and Pull Requests
Collaborative workflows are essential when working on projects with multiple contributors
Forking a Repository and its Benefits
Collaborative Workflows using Branches and Pull Requests
Create a new branch
git branch my-feature
git checkout my-featureMake changes on the branch and commit them
Push the branch to your forked repository
Submitting and Reviewing Pull Requests
PreviousPushing and Pulling Changes to and from Remote RepositoriesNextResolving Conflicts in a Collaborative Environment
Last updated