Answers for "delete branch remote and local github"

167

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

delete git branch from remote

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

deleting a remote branch

git push  <REMOTENAME> :<BRANCHNAME>
Posted by: Guest on June-02-2021

Code answers related to "delete branch remote and local github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language