Git Branching & PRs
Last updated
Last updated
GitHub enables developers across the world to collaborate on projects. In this lesson, we'll learn how to use GitHub to create and manage branches, merge branches, create pull requests, and resolve merge conflicts.
Objectives
You will be able to…
Define the terms "branch" as it relates to git
Create a branch through the Github GUI and the CLI.
Create a pull request.
Resolve merge conflicts through the Github GUI
Fork a repository.
Key Terms
Main Branch — The main branch of a repository. Whenever anyone visits a repository on GitHub or clones it down, this is what they will see.
Feature Branch — a copy of a repository at a point in time that allows developers to work on a feature without impacting the rest of the project.
Merge - to combine the commit history of two or more branches into one.
Pull Request — a request for another developer to pull down your branch and review your code. If they approve the changes, they will merge your branch into the main branch!
Fork — a copy of a repository that is disconnected from the main repository. Typically they include the entire commit history of the main repository at the time the fork was created.
Important Git commands
Every repository's commit history has what is called a "main branch" or "trunk". Whenever anyone visits a repository on GitHub or clones it down, this is what they will see.
Up until now, we've been pushing our commits directly to the main branch. But as they say...
Rather than pushing our code to the main branch, we can create a separate feature branch!
A feature branch is a copy of the main branch at a point in time and allows developers to work on a feature without impacting the main branch. Branches can be saved on GitHub and are only merged into the main branch when a feature is completed.
Branching ensures that the main branch is always a "stable" version. That is, if someone were to look at the repo, they can look at the main branch and know that it is fully functional. Every merge represents a successful addition of a new feature.
In order to use branches in a project, we will introduce the following commands, typically in this order:
Try these commands out for yourself! After you push your branch to GitHub, you should be able to see the new commit on the main branch as well as the new branch in the list of branches on GitHub.
Now we have our code on GitHub in two branches: main
and our new feature branch.
In the professional world, before we merge ANYTHING into the main
branch, there is an additional step called Code Review in which another developer (typically an Engineering Manager) reviews new code and either accepts or rejects the changes.
After pushing an updated branch to GitHub, a notification will appear on the repository page with a call to action: "Compare and pull request".
A pull request (PR) is a request for another developer to review their branch and either merge the branch or request modifications.
When creating a PR, include a description of the changes so that reviewers can quickly provide feedback.
The Files Changed tab lets you see the lines of each file that were added, removed, or modified. You can also leave comments and provide a detailed review.
If everything looks good, you can merge the pull request directly on GitHub!
After merging, it is up to you if you want to delete the branch or keep working on it.
A common step that developers of all levels forget is to return to their local repository and pull down the latest changes from GitHub.
This is a good practice to perform whenever you start a new programming session to ensure your main
branch is always up to date.
When working on a project on your own, using branches is a good idea, but not always required. For example, if a project is just a personal project and you're not concerned about other people seeing a broken main branch, you can get away with pushing to main.
However, when working on teams, branching is a must. It does add some complexity to the process but the protection of the main branch is of the utmost importance.
Check out the process here:
We're now dealing with two local repositories, each with their own branch (we'll call them feature-x
and feature-y
).
The process for the first developer is mostly the same as if they were working solo!
git checkout -b feature-x
to create and switch to a new feature branch.
Make changes, add, commit, and push their branch to GitHub.
Make a PR and merge it!
Return to your local repository and git pull
.
The second developer needs to do a bit more. They will perform the same first two steps. Then, they will need to:
git checkout main
and git pull
to download the latest commits from GitHub.
git checkout feature-y
and git merge main
to update their feature branch's commit history.
It is possible that merge conflicts occurred so resolve them and add, commit, and push!
Make a PR and merge it!
Return to your local repository and git pull
.
The first developer can now git checkout main
and git pull
to download the latest commits from GitHub.
In this lesson, we learned how to create and manage branches in a project, and how to create a pull request!
The diagram below illustrates the entire process:
There are 10 steps in this process:
Clone or Pull from GitHub
Create a new local branch
Make changes
Stage/Add those changes
Commit
Pull and handle merge conflicts
Push the branch to GitHub
Open a Pull Request (PR)
Get the PR reviewed and approved
Merge the PR!