Gita

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.

Microsoft Sculpt Touch Wireless Mouse Review
I recently read about the Microsoft Sculpt Touch wireless mouse and decided to buy it. After using it for a while, I decided to share my experience wi...
AppyMouse On-screen Trackpad and Mouse Pointer for Windows Tablets
Tablet users often miss the mouse pointer, especially when they are habitual to using the laptops. The touchscreen Smartphones and tablets come with m...
Middle mouse button not working in Windows 10
The middle mouse button helps you scroll through long webpages and screens with a lot of data. If that stops, well you will end up using the keyboard ...