Git Remove Local Branches Code Example


Example 1: delete branch from remote


// delete branch locally
git branch -d localBranchName

//delete local branch that is unmerged
git branch -D localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

Example 2: delete a branch in git


// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

Example 3: git how to delete origin branch


$ git push origin --delete feature/login

Example 4: git delete branch


## git version 2.25.1

## Deleting local branches
git branch -d feature/login
## Deleting remote branches
git push origin --delete feature/login

## Deleting both a local and a remote branch
## They are completely separate objects in Git. But
git branch -d feature/login && git push origin --delete feature/login

Example 5: delete local branch git


git branch -d <branch_name>

Example 6: git delete local branch


git branch -d test

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable