Skip to content

Git: Create and delete remote branches

Many git users frequently do create and delete branches. I often forget the command. So i am now writing it down here. May be, it will be useful to some guys out there too.

Create a remote branch

git push origin new_branch

Where origin is your remote name and new_branch is the name of the branch you want to push up.

Delete a remote branch

git push origin :mybranch

This will delete the “mybranch” branch on the origin remote, but you’ll still need to delete the branch locally with

git branch -d mybranch

Hope, it will help you.

Dipin Krishna

Written by Dipin Krishna

Senior full-stack engineer with 15 years across Django, Laravel, SwiftUI and the infrastructure underneath. Available for contract work.

Work with me →

Leave a note

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.