Git Worktree List

What is Git Worktree List?

Git Worktree List shows the list of linked working trees for a repository. It displays the path of each working tree along with its HEAD reference. This command is useful for managing and keeping track of multiple working trees associated with a single repository.

Git, a distributed version control system, is an essential tool for software engineers. It allows multiple developers to work on a project simultaneously without overwriting each other's changes. One of the many features of Git is the 'worktree' command, which allows users to manage multiple working trees linked to the same repository. This article will delve into the 'git worktree list' command, explaining its purpose, functionality, and use cases in detail.

The 'git worktree list' command is used to list all the worktrees that are linked to a repository. A worktree, in Git terminology, is a sandboxed working directory that allows you to work on two different branches of the same repository simultaneously. This command is part of the 'git worktree' suite of commands, which are used to manage worktrees.

Definition of Git Worktree List

The 'git worktree list' command is a subcommand of 'git worktree' that provides a list of all the worktrees associated with a repository. Each entry in the list represents a separate worktree, and includes the path to the worktree and the branch that it is currently checked out to.

When you run 'git worktree list', Git will display a list of all the worktrees in the repository, each with its own line. The first column of the output is the path to the worktree, and the second column is the branch that the worktree is checked out to. If a worktree is currently in a detached HEAD state, the second column will display '(detached HEAD)' instead of a branch name.

Understanding Worktrees

A worktree in Git is a working directory that is linked to a repository. It allows you to have multiple branches of the same repository checked out at the same time, in different directories. This can be useful when you need to work on two different tasks at the same time, but don't want to switch back and forth between branches.

Worktrees are created using the 'git worktree add' command. Once a worktree is created, you can navigate to it using the command line and work on it as if it were a separate repository. However, all the worktrees share the same repository data, so changes made in one worktree can be easily merged into another.

Output of Git Worktree List

The output of 'git worktree list' is a list of all the worktrees linked to the repository. Each line in the output represents a separate worktree. The first column is the path to the worktree, and the second column is the branch that the worktree is checked out to.

If a worktree is in a detached HEAD state, the second column will display '(detached HEAD)' instead of a branch name. A detached HEAD state means that the worktree is not currently checked out to any branch. This can happen if you check out a specific commit instead of a branch.

History of Git Worktree

The 'git worktree' command was introduced in Git 2.5, released in July 2015. Before this, users who wanted to work on multiple branches of the same repository at the same time had to clone the repository multiple times, which was inefficient and time-consuming.

The introduction of the 'git worktree' command made it possible to have multiple working directories linked to the same repository, each checked out to a different branch. This made it much easier to work on multiple tasks at the same time, without having to switch back and forth between branches or clone the repository multiple times.

Evolution of Git Worktree

Since its introduction, the 'git worktree' command has been improved and expanded with new features. For example, in Git 2.7, the 'git worktree move' and 'git worktree remove' commands were added, allowing users to rename or delete worktrees.

In Git 2.15, the 'git worktree lock' and 'git worktree unlock' commands were added, allowing users to prevent accidental deletion of worktrees. In Git 2.17, the 'git worktree prune' command was added, which removes worktree metadata for worktrees that no longer exist.

Use Cases for Git Worktree List

The 'git worktree list' command is useful in a variety of situations. For example, if you have multiple worktrees and you want to see a list of all of them, you can use 'git worktree list' to get a quick overview of all the worktrees linked to your repository.

Another use case is when you have a large number of worktrees and you want to find a specific one. By running 'git worktree list', you can see the paths to all the worktrees, making it easier to find the one you're looking for.

Working on Multiple Features Simultaneously

If you're working on multiple features at the same time, you can use worktrees to keep your work separate. Each feature can have its own worktree, checked out to its own branch. This allows you to switch between features simply by switching directories, without having to switch branches within a single directory.

When you're ready to switch tasks, you can run 'git worktree list' to see a list of all your worktrees, making it easy to find the one you want to switch to. This can be especially useful if you have a large number of worktrees and can't remember the paths to all of them.

Testing Changes in Different Environments

Another use case for 'git worktree list' is when you're testing changes in different environments. For example, you might have one worktree for development, another for testing, and a third for production. By running 'git worktree list', you can see a list of all your worktrees, making it easy to switch between them.

This can be especially useful if you're making changes that need to be tested in multiple environments before they can be merged into the main branch. By using worktrees, you can easily switch between environments without having to switch branches or clone the repository multiple times.

Specific Examples of Git Worktree List

Let's look at some specific examples of how 'git worktree list' can be used. Suppose you're working on a project and you have three worktrees: one for development, one for testing, and one for production. You're currently in the development worktree, and you want to switch to the testing worktree.

You can run 'git worktree list' to see a list of all your worktrees. The output might look something like this:


/path/to/repo (master)
/path/to/repo/testing (testing)
/path/to/repo/production (production)

From this output, you can see that the testing worktree is located at '/path/to/repo/testing', and it's currently checked out to the 'testing' branch. You can navigate to this directory using the command line, and start working on the testing branch.

Creating a New Worktree

Another example is when you're creating a new worktree. Suppose you're working on a new feature, and you want to create a new worktree for it. You can use the 'git worktree add' command to create the new worktree:


git worktree add /path/to/new/worktree feature-branch

After running this command, you can use 'git worktree list' to confirm that the new worktree has been created. The output might look something like this:


/path/to/repo (master)
/path/to/repo/testing (testing)
/path/to/repo/production (production)
/path/to/new/worktree (feature-branch)

From this output, you can see that the new worktree is located at '/path/to/new/worktree', and it's currently checked out to the 'feature-branch' branch. You can navigate to this directory using the command line, and start working on the new feature.

Removing a Worktree

Finally, let's look at an example of removing a worktree. Suppose you're done with a feature and you want to remove the worktree for it. You can use the 'git worktree remove' command to remove the worktree:


git worktree remove /path/to/worktree

After running this command, you can use 'git worktree list' to confirm that the worktree has been removed. The output might look something like this:


/path/to/repo (master)
/path/to/repo/testing (testing)
/path/to/repo/production (production)

From this output, you can see that the worktree at '/path/to/worktree' has been removed, and is no longer listed.

High-impact engineers ship 2x faster with Graph
Ready to join the revolution?
High-impact engineers ship 2x faster with Graph
Ready to join the revolution?

Code happier

Join the waitlist