With knowledge of these terms and what - on a more technical level - branches really are, we can begin to demonstrate how to use them.
To get started with branching, point your Git console within a repo, as is necessary for running any Git commands. We will demonstrate these tasks on a new GitHub repository with nothing but the default readme file:
Github offers a way to visualize a repository and its branches under insights -> network on the page for your repo. With our initial commit, the tree is quite bare:
As we begin to use branches, we will see how the tree allows us to visually depict how different branches are developed on parallel.
Whenever working in Git, you will be working on a particular branch (master by default). To create or switch to a branch, use:
If the “-b” argument is provided and the branch name does not exist, a new branch will be created with that name. Any uncommitted changes on your current branch will be transferred to the new branch. Then, whether the branch already existed or a new one was created, you will be switched to working on that branch.
Now make a new file, with some basic contents, and commit it to the repo. We will use the following example:
Pushing a branch to a remote repo (such as on GitHub) requires a special command if the branch does not exist there yet (otherwise just push normally):
When this is done, we may view the branch in our repository on GitHub. By using the small dropdown on the top left to select the current branch. First, we notice that our commit and corresponding file are not in the repository by default. This is because we are viewing the main
branch and not our new branch. When viewing the new branch, we see that our changes are there.
Now, use the git checkout
command to switch back to the main branch. You will notice that any new changes in the branch you created are missing. This is because they are only on that branch! We now make a change here, to demonstrate how the two branches can be developed independently:
Now we may commit this file, and view the revision tree, which will reveal what our repository looks like now with its two branches, each with their own different "code":
As we can see, the two branches are now split from the point we made the new branch, and each has their own commits with different content.
GitHub also provides a user interface on the website for creating and managing branches. By clicking on "branches" next to the branch selection dropdown when viewing the repo, you will be able to view the branches that have been created. Here you can manage and navigate between branches. To delete a branch, click the small trash can icon for the branch you wish to remove.
Returning to the homepage for the repo, typing a non-existent branch name in the branches dropdown and hitting enter will create a new branch from the one currently being viewed.
In summary, we have learned how to use branches. From this guide you should know how to:
Push branches to a remote repository
View them on GitHub
Add files and code to them independently
Visualize the revisions and branching history in a tree-like view
Create and manage branches through GitHub's interface instead of the terminal