Answers for "git delete remote branch"

146

delete local 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
21

git remove remote

$ git remote -v
# View current remotes
> origin  https://github.com/OWNER/REPOSITORY.git (fetch)
> origin  https://github.com/OWNER/REPOSITORY.git (push)
> destination  https://github.com/FORKER/REPOSITORY.git (fetch)
> destination  https://github.com/FORKER/REPOSITORY.git (push)

$ git remote rm destination
# Remove remote
$ git remote -v
# Verify it's gone
> origin  https://github.com/OWNER/REPOSITORY.git (fetch)
> origin  https://github.com/OWNER/REPOSITORY.git (push)
Posted by: Guest on April-15-2020
20

git delete remote branch

$ git push origin --delete feature/login
Posted by: Guest on February-17-2020
1

git delete remote branch

#delete remote branch
git push -d <remote_name> <branch_name>
#example: git push -d origin new_feature

#delete local branch
git branch -d <branch_name>
#example: git branch -d new_feature
Posted by: Guest on December-19-2020
4

git delete remote branch

$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>
Posted by: Guest on June-11-2020
0

git delete remote branch

git push <remote> :<branch>
Posted by: Guest on June-07-2021

Code answers related to "git delete remote branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language