How to Clone a Single Branch in Git

Sometimes it is necessary to clone a single and specific branch. Let’s take a look at different approaches and take the steps to get the job done!

Watch a course Git & GitHub - The Practical Guide

Cloning a Single Branch Using git remote add

Creating a new repository

The first step should be creating a new repository with git init:

git init

Adding the remote and fetching the branch

The second step is to add a remote named origin for the given repository, which will fetch the given branch from origin:

git remote add -t <branch-name> -f origin <remote-repo-url>

Checkout to the given branch

The third step is to checkout to that branch with the git checkout command for creating a corresponding local branch:
git checkout <branch-name>

Cloning a Single Branch Using git clone

The classic git clone command with the --single-branch option will clone only the master branch by default. If you want to clone another branch, you should add the --branch flag with the name of the desired branch.

git clone --single-branch --branch <branch-name> <remote-repo-url>

The git branch Command

Git branches should be an important part of your daily working process.

The branching feature is available in most of the version control systems. It is used to create, delete or list branches. Branches act as an isolated development line. They represent a way of requesting a new working directory, project history, and staging area. When you develop isolated development lines for 2 features, it will allow working on them on parallel making the master branch free of uncertain codes.

The git init Command

This command is aimed at creating a new, not filled repository or reinitializing an existing git repository. Using this command you create a .git subdirectory. The subdirectory includes metadata.

Git init is a super-easy way of creating version-controlled projects. You just need to cd into the subdirectory of your project, then run the git init command. In this way, you’ll have a fully functional git repository.

The git remote Command

This command is used to create, view and remove connections to other git repositories. The connections of git remote are bookmarks in other repositories. They represent convenient naming used for referencing a not-so-convenient URL.

The git checkout Command

You can use this command for switching branches or restoring working tree files. It can be run on branches, commits, and files. It works along with the git branch command. Git checkout is aimed at updating files in the working directory to match the version which is stored in the branch. It tells Git to record all the new commits.