Git

How to Delete Remote Branch in Git

How to Delete Remote Branch in Git
In this article, I am going to show you how to delete or remove a remote Git branch. I will use a GitHub repository as a remote Git repository for the demonstration. But, you can use any other remote Git repository hosted on other platforms such as BitBucket, GitLab etc as well.

Cloning the Remote Git Repository:

In this section, I am going to show you how to clone a remote Git repository on your local computer for deleting or removing a branch from the remote Git repository.

I will use one of my GitHub repository (https://github.com/dev-shovon/hello-c) for the demonstration.

To clone your desired GitHub repository on your local computer, run the following command:

$ git clone https://github.com/dev-shovon/hello-c

The remote Git repository should be cloned.

A new directory should be created as you can see in the screenshot below.

Now, navigate to the newly created directory with the following command:

$ cd hello-c/

Listing Remote Branches:

Before you delete or remove a remote Git branch, it is important to know what remote branches are available. You can get a list of all the remote Git branches from the command line very easily.

To list all the Git remote branches, run the following command:

$ git branch --remotes

As you can see, all the remote branches are listed. Let's remove the origin/improved branch. Here, origin is the name of the remote repository and improved is the name of the remote branch.

Removing Remote Repository:

To remove the improved branch from the origin repository, you can run one of the following commands:

$ git push origin -d improved
Or,
$ git push origin --delete improved

Or,

$ git push origin :improved

NOTE: A colon (:) before the branch name has the same effect as the -d or -delete option of git push.

You will be prompted for the username and password of your remote Git repository. For GitHub, it is the login details of your GitHub account. Once you provide the login details, the remote Git branch (improved in this case) should be removed.

As you can see, the remote branch origin/improved is no longer listed.

$ git branch --remotes

As you can see, the branch improved is not listed on my GitHub repository as well. So, it is removed for good.

So, that's how you delete or remove a remote branch in Git. Thanks for reading this article.

Mouse left-click button not working on Windows 10
If you are using a dedicated mouse with your laptop, or desktop computer but the mouse left-click button is not working on Windows 10/8/7 for some rea...
Cursor jumps or moves randomly while typing in Windows 10
If you find that your mouse cursor jumps or moves on its own, automatically, randomly while typing in Windows laptop or computer, then some of these s...
How to reverse Mouse and Touchpads scrolling direction in Windows 10
Mouse and Touchpads not only make computing easy but more efficient and less time-consuming. We cannot imagine a life without these devices, but still...