Git shows remote tracking branches
Branches on remote Git repositories are called remote branches. These are pointers to our remote repositories, including branches, tags, etc.
Local branches only exist on each developer's local personal computer, but there is only one remote branch for all developers to merge their tasks and push to the cloud repository.
When we clone a repository, a reference to the remote origin is automatically created, which is called remote in our local environment. It helps us to check out new commits and push recent changes to the remote repository.
Git repositories preserve and track the order of defined commits in branches. We can automatically find commits in the currently assigned branch, main or master, which is the default option.
Git branches can be obtained through the Git command git branch. Branches with an asterisk ( *
) can be identified as the currently active branches in the current repository.
List Git remote branches
We can list the remote branches linked to the Git repository through three different commands with different parameters listed below.
$ git branch -a
git branch -a
The command will list all the branches on your local personal branch as well as all the branches available in the remote repository.
$ git branch -r
git branch -r
The command will only list all branches available on the remote repository, not local branches on the developer's personal computer.
$ git remote show
git remote show
The command will only list all branches available on the remote repository and the associated metadata of the branches, not the local branches on the developer's personal computer.
The first two commands are often used because they list only the required branches and details. On the other hand, the last one gives us a detailed view of every branch that developers don’t need.
Tracking remote branches in Git
We will track remote branches to establish a relationship with local branches for various purposes. It helps us push or pull commits from remote to local branches to complete the work we have done in the local repository.
It also helps us discover the status of our local branch, i.e. how far ahead or behind the commits in our local branch are compared to the remote branch.
Viewing tracked remote branches in Git
To view remote tracking branches and local branches in Git, we will use the command with the flag -vvgit branch
.
The result of this command is in the format of [<remote>/<branch>]
. It is a list of remotes and branches.
$ git branch -vv
Changing the remote tracking of a branch in Git
Sometimes we may need to change our local branch to track some other remote branch in the same repository, to set our most recent branch as the prominent remote branch.
To do this, we will use the command git branch
to track the remote branch with flag u as shown below.
git branch -u Remote2/main
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Copy files from another branch in Git
Publish Date:2025/04/03 Views:52 Category:Git
-
In Git, merging various files can lead to a lot of conflicts. Through these merge conflicts, our files may be compromised, so we have to copy these files or folders from one branch to another to keep them safe. A popular approach is cherry
Push to a specific branch in Git
Publish Date:2025/04/02 Views:54 Category:Git
-
In Git, we use branches to develop independent features directly from the main workflow of the project. Since Git is considered to be the best version control system so far, we have local and remote branches in our repository for different
Solve the Git Push Everything Up-To-Date Problem
Publish Date:2025/04/02 Views:120 Category:Git
-
Git is a free, open source version control system designed to work with projects quickly and efficiently. You can make changes to your repo and push them to master branches. This article explains how to use git push the command to resolve e
Git merge development branch into feature branch
Publish Date:2025/04/02 Views:127 Category:Git
-
Creating new branches and merging them is considered to be the most powerful tool of Git. The ability of Git to create new branches and merge them into the development code is very useful for developers working in a team environment. This f
Understanding Git conflict markers
Publish Date:2025/04/02 Views:113 Category:Git
-
In this article, we will discuss git conflict markers. Understanding Git conflict markers When pulling changes from a remote repository, you may encounter merge conflicts. Merge conflict files can sometimes be confusing. A typical merge con
Selectively merge changes from different branches in Git
Publish Date:2025/04/02 Views:117 Category:Git
-
This article will discuss merging specific changes from one branch to another. As we know, when merging branches, Git merges all files without exception. You may find yourself in a scenario where you have some commits in one branch and you
Complete the merge after resolving conflicts in Git
Publish Date:2025/04/02 Views:63 Category:Git
-
This article describes the process of completing a merge after resolving merge conflicts in Git. We will go through the merge steps, resolve the conflicts, and complete the merge. Complete the merge after resolving conflicts in Git For a si
Merge the development branch into Master in Git
Publish Date:2025/04/02 Views:168 Category:Git
-
This article provides an overview of merging a development branch into the master branch. Often we find ourselves creating a branch outside of the master branch for development. Once we are happy with the changes, we can merge them into mas
Recovering a conflicting Git merge
Publish Date:2025/04/02 Views:161 Category:Git
-
This article explains the revert command when a merge conflict occurs git merge . We will also take a quick look at how to undo a git merge that was successful and has been pushed to a remote repository. Recovering a conflicting Git merge I