List all remote branches in Git
Git is specifically known as a distributed version control system, there is no central server where we push the code. Nevertheless, we push and pull the required changes in other repositories that we need in branches directly. It gives us the opportunity to branch from the original code base at any time. It allows us to collaborate with other developers more easily and provides a lot of flexibility in our workflow in a team.
You can have multiple local repositories on different machines and push them to the same remote repository when the work is completed. This allows us to clone a repository on one machine to our second machine and start working from there.
Remote tracking branches are local branches that track remote branches. They are local pointers to our remote repository and can be easily used to quickly switch to remote branches. The command git remote
can be used to create them (they are --track
created with the -p option), and they can be used like any other local branch. It is usually created using the following command.
git branch --track <remote-branch> <local-branch>
--track
Options can be added git branch
to the command, and we can also use it to track branch commits, as follows:
git branch --track <remote-branch> <local-branch>.
List Git remote branches
In this section, we will discuss how to list all remote branches in Git. We can list the remote branches associated with multiple commands listed below. There are various commands in Git that can display different types of branches depending on your current situation in the repository.
We will use git branch
the command to view local branches. git branch -a
The command lists the local branches and remote tracking branches that we have set up to keep in sync with the remote branches. git branch -r
The command lists the remote tracking branches but not the local branches. git remote show
The command can also list remote branches. The syntax for list branches in Git is as follows.
git branch -a
git branch -r 命令
The syntax is as follows.
git branch -r
git remote show
The command syntax is,
git remote show [name]
Where name
is the name of the remote branch in the repository. To view the remote branch connected to the master branch in our remote origin repository, use the following command:
git branch -r origin/master
We will use the following command to view the remote tracking branch connected to the master branch in the remote origin repository.
git branch -a origin/master
We can say, to see remote branches that are not tracked by your local repository, add -a
the flag.
git remote show origin -a * remote origin
If we have a lot of remote branches, we may find it useful to limit the output to only the tracked remote branches using the following command.
git remote show origin --tracked * remote origin
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
Git installation and establishment of local warehouse service
Publish Date:2025/04/05 Views:89 Category:Git
-
Git is a distributed version control system: the client does not only extract the latest version of the file snapshot, but also completely mirrors the original code repository. It has the following advantages: a. Since every extraction oper
git remote operation——multiple remote repositories for one project
Publish Date:2025/04/05 Views:131 Category:Git
-
Multiple remote repositories for a git project In our git project, the command to operate the remote repository information is $ git remote # 查看当前所有的远程仓库的名称 $ git remote -v # 查看远程仓库的名称和远程仓
Git cherry pick command usage
Publish Date:2025/04/05 Views:190 Category:Git
-
git cherry-pick is a powerful command that allows us to select an arbitrary Git commit by reference and attach it to the HEAD of the current working branch. Cherry picking is the act of picking a commit from one branch and applying it to an
Comparison between Git merge and Git rebase
Publish Date:2025/04/05 Views:171 Category:Git
-
The git rebase command may seem like Git wizardry to beginners, but if used carefully, it can actually make life easier for your development team. In this article, we compare git rebase with the related git merge command and identify all th
How to fix Git error Error: src refspec master does not match any
Publish Date:2025/04/05 Views:124 Category:Git
-
When using Git, we may encounter the error "src refspace master does not match any". Here's what the error means and how to fix it. What does src refspec master does not match any Mean in Git mean? We may encounter this error when we try to
Rebase local branch when pulling changes from remote repository branch in Git
Publish Date:2025/04/05 Views:144 Category:Git
-
This article will cover the basics of rebasing your local branch when pulling changes from a remote repository branch in Git. We use the version control system Git to track changes made to files. We commit changes in a local branch in our l
Undo Git Stash
Publish Date:2025/04/04 Views:187 Category:Git
-
This article explains how to make and save changes to a repository. Git allows you to save changes locally and push them to a server when needed. In Git, we don't use the term save , but commit . We use git add , git commit , and git stash
View a list of cache entries in Git
Publish Date:2025/04/04 Views:59 Category:Git
-
We often need to pause our work and focus on something else in our development environment. Therefore, we may need to temporarily save our current work and focus on a different one. We may want to resume our original work later. git stash T
Git stores specific files
Publish Date:2025/04/04 Views:115 Category:Git
-
This article will cover storing changes to only specific files in Git. In Git, when we make some changes in our working tree, we may have some changes which may or may not be staged in our local repo. We may now wish to save these changes f