Answers for "delete git branch from remote"

146

delete remote branch

// 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
Posted by: Guest on April-07-2020
126

delete branch local and remote git

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName
Posted by: Guest on February-14-2020
0

Delete a branch from remote

git push origin --delete Test_Branch
Posted by: Guest on August-01-2021
0

delete git branch from remote

git push origin --delete <your remote branch name>
Posted by: Guest on August-06-2021

Code answers related to "delete git branch from remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language