Git: Deleting Local and Remote Branches

To delete a local branch:

git branch -d the_local_branch

To delete a remote branch:

it push origin :the_remote_branch

But pay attention when working with remote branches, you should make sure that nobody bases/uses that branch.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s